@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.
@@ -1 +1 @@
1
- 5.0.0-rc.4
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.0.0-rc.4",
3
+ "version": "5.0.0-rc.5",
4
4
  "tag": "next",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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
  };