@eui/tools 6.13.3 → 6.13.4

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
- 6.13.3
1
+ 6.13.4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.13.4 (2023-10-21)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * add config param for preventing esbuild output to alternate sub dist folder - EUI-7843 [EUI-7843](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7843) ([5e48dddf](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5e48dddf65307a465cf844780d69f861ffd4bcb0))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.13.3 (2023-10-20)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.13.3",
3
+ "version": "6.13.4",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -253,6 +253,12 @@ module.exports.angular = (envTarget, isSnapshot, version, configEnvTargetIn) =>
253
253
  }
254
254
  })
255
255
 
256
+ .then(() => {
257
+ if (currentProject.build && currentProject.build.esbuild && currentProject.build.skipBrowserOutputPath) {
258
+ tools.copydir(path.join(currentProject.paths.rootPath, 'dist', 'browser'), path.join(currentProject.paths.rootPath, 'dist'));
259
+ tools.remove(path.join(currentProject.paths.rootPath, 'dist', 'browser'));
260
+ }
261
+ })
256
262
 
257
263
  .catch((e) => {
258
264
  throw e;