@eui/tools 5.2.1 → 5.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/config/angular.js +60 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.2.
|
|
1
|
+
5.2.2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.2.2 (2022-05-03)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* missing configuration injection for v14 normal app config - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([16e1260c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/16e1260c4845c65f2743c1ca1e9ae5a455dc51bc))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.2.1 (2022-05-02)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -311,6 +311,36 @@ const angularProjectDefV13 = {
|
|
|
311
311
|
}
|
|
312
312
|
]
|
|
313
313
|
},
|
|
314
|
+
"production-optimized-no-openid": {
|
|
315
|
+
"fileReplacements": [
|
|
316
|
+
{
|
|
317
|
+
"replace": "apps/@project.name@/src/environments/environment.ts",
|
|
318
|
+
"with": "apps/@project.name@/src/environments/environment.prod.ts"
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"optimization": {
|
|
322
|
+
"scripts": true,
|
|
323
|
+
"styles": {
|
|
324
|
+
"minify": false,
|
|
325
|
+
"inlineCritical": true
|
|
326
|
+
},
|
|
327
|
+
"fonts": true
|
|
328
|
+
},
|
|
329
|
+
"outputHashing": "all",
|
|
330
|
+
"sourceMap": false,
|
|
331
|
+
"namedChunks": true,
|
|
332
|
+
"aot": true,
|
|
333
|
+
"extractLicenses": true,
|
|
334
|
+
"vendorChunk": false,
|
|
335
|
+
"buildOptimizer": true,
|
|
336
|
+
"budgets": [
|
|
337
|
+
{
|
|
338
|
+
"type": "initial",
|
|
339
|
+
"maximumWarning": "2mb",
|
|
340
|
+
"maximumError": "6mb"
|
|
341
|
+
}
|
|
342
|
+
]
|
|
343
|
+
},
|
|
314
344
|
"development": {
|
|
315
345
|
"buildOptimizer": false,
|
|
316
346
|
"optimization": false,
|
|
@@ -433,6 +463,36 @@ const angularProjectDefV14 = {
|
|
|
433
463
|
}
|
|
434
464
|
]
|
|
435
465
|
},
|
|
466
|
+
"production-optimized-no-openid": {
|
|
467
|
+
"fileReplacements": [
|
|
468
|
+
{
|
|
469
|
+
"replace": "apps/@project.name@/src/environments/environment.ts",
|
|
470
|
+
"with": "apps/@project.name@/src/environments/environment.prod.ts"
|
|
471
|
+
}
|
|
472
|
+
],
|
|
473
|
+
"optimization": {
|
|
474
|
+
"scripts": true,
|
|
475
|
+
"styles": {
|
|
476
|
+
"minify": false,
|
|
477
|
+
"inlineCritical": true
|
|
478
|
+
},
|
|
479
|
+
"fonts": true
|
|
480
|
+
},
|
|
481
|
+
"outputHashing": "all",
|
|
482
|
+
"sourceMap": false,
|
|
483
|
+
"namedChunks": true,
|
|
484
|
+
"aot": true,
|
|
485
|
+
"extractLicenses": true,
|
|
486
|
+
"vendorChunk": false,
|
|
487
|
+
"buildOptimizer": true,
|
|
488
|
+
"budgets": [
|
|
489
|
+
{
|
|
490
|
+
"type": "initial",
|
|
491
|
+
"maximumWarning": "2mb",
|
|
492
|
+
"maximumError": "6mb"
|
|
493
|
+
}
|
|
494
|
+
]
|
|
495
|
+
},
|
|
436
496
|
"development": {
|
|
437
497
|
"buildOptimizer": false,
|
|
438
498
|
"optimization": false,
|