@eui/tools 6.16.9 → 6.16.10

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.16.9
1
+ 6.16.10
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.16.10 (2024-04-08)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * activate new styles dist structure only for v18 - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([643a0906](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/643a0906a0357c792f3686a114ea6640704a2c42))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.16.9 (2024-04-07)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.9",
3
+ "version": "6.16.10",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -245,10 +245,19 @@ module.exports.build = (pkg) => {
245
245
  }, Promise.resolve());
246
246
  }))
247
247
  .then(() => {
248
- return tools.copydir(tmpFolderStyles, distFolder, true, `**/*.css`);
248
+ if (pkg.build.euiVersion !== '18.x') {
249
+ return tools.copydir(tmpFolder, distFolder, true, `**/*.css`);
250
+ } else {
251
+ return tools.copydir(tmpFolderStyles, distFolder, true, `**/*.css`);
252
+ }
249
253
  })
250
254
  .then(() => {
251
- return tools.copydir(tmpFolderStyles, distFolder, true, `**/*.map`);
255
+ if (pkg.build.euiVersion !== '18.x') {
256
+ return tools.copydir(tmpFolder, distFolder, true, `**/*.map`);
257
+ } else {
258
+ return tools.copydir(tmpFolderStyles, distFolder, true, `**/*.map`);
259
+ }
260
+
252
261
  })
253
262
  .then(() => {
254
263
  console.log('Output CSS copy succeeded');