Although this code has been part of Angular 9.x I only noticed this error when upgrading to Angular 9.1.x because historically the source locale data was not injected when localizing, but as of angular/angular-cli#16394 (9.1.0) it is now included. This tipped me off that my other bundles were not being built properly, and this change allows me to build a valid ES5 bundle (I have also added a verification step to my build pipeline to alert me if this error appears again in any of my bundles). I found the `locales/global/*.js` file paths being referenced by the `I18nOptions` in @angular-devkit/build-angular/src/utils/i18n-options.ts, and following that it looks like it is actually loaded and used in @angular-devkit/build-angular/src/utils/process-bundle.ts. I saw the function `terserMangle` does appear that it is likely aware of the build being ES5, but I'm not sure why this is not producing a valid ES5 bundle. This change updates `tools/gulp-tasks/cldr/extract.js` to produce ES5 compliant `locales/global/*.js` and that fixes my issue. However, I am not sure if @angular-devkit/build-angular should be modified to produce a valid ES5 bundle instead or if the files could be TypeScript rather than JavaScript files. A test that a valid ES5 bundle is produced would be helpful, and I hope this is reproducible and not some issue with my config. PR Close #36342
68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
/**
|
||
* @license
|
||
* Copyright Google Inc. All Rights Reserved.
|
||
*
|
||
* Use of this source code is governed by an MIT-style license that can be
|
||
* found in the LICENSE file at https://angular.io/license
|
||
*/
|
||
|
||
// THIS CODE IS GENERATED - DO NOT MODIFY
|
||
// See angular/tools/gulp-tasks/cldr/extract.js
|
||
|
||
(function(global) {
|
||
global.ng = global.ng || {};
|
||
global.ng.common = global.ng.common || {};
|
||
global.ng.common.locales = global.ng.common.locales || {};
|
||
var u = undefined;
|
||
function plural(n) {
|
||
if (n === 1) return 1;
|
||
return 5;
|
||
}
|
||
global.ng.common.locales['ks'] = [
|
||
'ks',
|
||
[['AM', 'PM'], u, u],
|
||
u,
|
||
[
|
||
['ا', 'ژ', 'ب', 'ب', 'ب', 'ج', 'ب'],
|
||
[
|
||
'آتھوار', 'ژٔندٕروار', 'بۆموار', 'بودوار', 'برؠسوار',
|
||
'جُمہ', 'بٹوار'
|
||
],
|
||
[
|
||
'اَتھوار', 'ژٔندرٕروار', 'بۆموار', 'بودوار', 'برؠسوار',
|
||
'جُمہ', 'بٹوار'
|
||
],
|
||
[
|
||
'آتھوار', 'ژٔندٕروار', 'بۆموار', 'بودوار', 'برؠسوار',
|
||
'جُمہ', 'بٹوار'
|
||
]
|
||
],
|
||
u,
|
||
[
|
||
['ج', 'ف', 'م', 'ا', 'م', 'ج', 'ج', 'ا', 'س', 'س', 'ا', 'ن'],
|
||
[
|
||
'جنؤری', 'فرؤری', 'مارٕچ', 'اپریل', 'میٔ', 'جوٗن',
|
||
'جوٗلایی', 'اگست', 'ستمبر', 'اکتوٗبر', 'نومبر', 'دسمبر'
|
||
],
|
||
u
|
||
],
|
||
u,
|
||
[['بی سی', 'اے ڈی'], u, ['قبٕل مسیٖح', 'عیٖسوی سنہٕ']],
|
||
0,
|
||
[0, 0],
|
||
['M/d/yy', 'MMM d, y', 'MMMM d, y', 'EEEE, MMMM d, y'],
|
||
['h:mm a', 'h:mm:ss a', 'h:mm:ss a z', 'h:mm:ss a zzzz'],
|
||
['{1} {0}', u, u, u],
|
||
['.', ',', ';', '%', '\u200e+', '\u200e-', 'E', '×', '‰', '∞', 'NaN', ':'],
|
||
['#,##,##0.###', '#,##,##0%', '¤ #,##,##0.00', '#E0'],
|
||
'INR',
|
||
'₹',
|
||
'ہِندُستٲنۍ رۄپَے',
|
||
{'JPY': ['JP¥', '¥'], 'USD': ['US$', '$']},
|
||
'rtl',
|
||
plural,
|
||
[]
|
||
];
|
||
})(typeof globalThis !== 'undefined' && globalThis || typeof global !== 'undefined' && global ||
|
||
typeof window !== 'undefined' && window);
|