@eui/tools 6.16.8 → 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.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.16.
|
|
1
|
+
6.16.10
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
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
|
+
* * *
|
|
10
|
+
## 6.16.9 (2024-04-07)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* adapted styles build for v18 - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([f68bee44](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f68bee4489caa26a6b178704af887a49c3d1424b))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.16.8 (2024-04-04)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -205,6 +205,7 @@ module.exports.build = (pkg) => {
|
|
|
205
205
|
const srcFolder = pkg.paths.src;
|
|
206
206
|
const srcOutFolder = path.join(pkg.paths.dist, 'src');
|
|
207
207
|
const tmpFolder = path.join(pkg.paths.dist, 'tmp');
|
|
208
|
+
const tmpFolderStyles = path.join(tmpFolder, 'styles');
|
|
208
209
|
const distFolder = path.join(pkg.paths.dist, 'dist');
|
|
209
210
|
|
|
210
211
|
if (!skipCompile) {
|
|
@@ -223,7 +224,9 @@ module.exports.build = (pkg) => {
|
|
|
223
224
|
console.log('Temp copy succeeded.');
|
|
224
225
|
})
|
|
225
226
|
.then(() => {
|
|
226
|
-
|
|
227
|
+
if (pkg.build.euiVersion !== '18.x') {
|
|
228
|
+
return tools.copydir(srcFolder, srcOutFolder);
|
|
229
|
+
}
|
|
227
230
|
})
|
|
228
231
|
.then(() => {
|
|
229
232
|
console.log('Sources copy succeeded.')
|
|
@@ -242,10 +245,19 @@ module.exports.build = (pkg) => {
|
|
|
242
245
|
}, Promise.resolve());
|
|
243
246
|
}))
|
|
244
247
|
.then(() => {
|
|
245
|
-
|
|
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
|
+
}
|
|
246
253
|
})
|
|
247
254
|
.then(() => {
|
|
248
|
-
|
|
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
|
+
|
|
249
261
|
})
|
|
250
262
|
.then(() => {
|
|
251
263
|
console.log('Output CSS copy succeeded');
|