@eui/tools 5.0.0-rc.4 → 5.0.0-rc.5
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 +15 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.0.0-rc.
|
|
1
|
+
5.0.0-rc.5
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.0.0-rc.5 (2021-09-21)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* added development mode in angular generated config - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([a12920db](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a12920db9c9e48eea7be4b33c1a1ebaac33c19a8))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.0.0-rc.4 (2021-09-20)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -324,8 +324,17 @@ const angularProjectDefFullSkeleton = {
|
|
|
324
324
|
"maximumError": "6mb"
|
|
325
325
|
}
|
|
326
326
|
]
|
|
327
|
+
},
|
|
328
|
+
"development": {
|
|
329
|
+
"buildOptimizer": false,
|
|
330
|
+
"optimization": false,
|
|
331
|
+
"vendorChunk": true,
|
|
332
|
+
"extractLicenses": false,
|
|
333
|
+
"sourceMap": true,
|
|
334
|
+
"namedChunks": true
|
|
327
335
|
}
|
|
328
|
-
}
|
|
336
|
+
},
|
|
337
|
+
"defaultConfiguration": "production"
|
|
329
338
|
},
|
|
330
339
|
"serve": {
|
|
331
340
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
@@ -339,8 +348,12 @@ const angularProjectDefFullSkeleton = {
|
|
|
339
348
|
},
|
|
340
349
|
"production": {
|
|
341
350
|
"browserTarget": "@project.name@:build:production"
|
|
351
|
+
},
|
|
352
|
+
"development": {
|
|
353
|
+
"browserTarget": "@project.name@:build:development"
|
|
342
354
|
}
|
|
343
|
-
}
|
|
355
|
+
},
|
|
356
|
+
"defaultConfiguration": "development"
|
|
344
357
|
}
|
|
345
358
|
}
|
|
346
359
|
};
|