@eui/tools 4.19.4 → 4.19.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
- 4.19.4
1
+ 4.19.5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 4.19.5 (2022-02-03)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * pwa project location - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([6b645602](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/6b64560289d1faae81906efab5e840ab48472d2b))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 4.19.4 (2022-02-03)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.19.4",
3
+ "version": "4.19.5",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -1125,7 +1125,7 @@ module.exports.registerAngularProjectDef = (project, build = false) => {
1125
1125
  if (project.build && project.build.pwa) {
1126
1126
  jsonFile['projects'][project.name].architect.build.options.serviceWorker = true;
1127
1127
  jsonFile['projects'][project.name].architect.build.options.ngswConfigPath = "ngsw-config.json";
1128
- jsonFile['projects'][project.name].architect.build.options.assets.push("src/manifest.webmanifest");
1128
+ jsonFile['projects'][project.name].architect.build.options.assets.push(`apps/${project.name}/src/manifest.webmanifest`);
1129
1129
  }
1130
1130
  }
1131
1131