@eui/tools 6.16.19 → 6.16.21
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.21
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.16.21 (2024-05-23)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* wrong version envTarget fetch for rc releases app group - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([2276ad58](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2276ad583cbe5c9ad43bc0f0b87744111229a3b8))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.16.20 (2024-05-17)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* add option to force publish of specific source folder for styles - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([f693a57d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f693a57d940deaa58f15a1f499dbbff4af56e303))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.16.19 (2024-05-17)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -106,7 +106,7 @@ module.exports.run = () => {
|
|
|
106
106
|
.then(() => {
|
|
107
107
|
const fixedDeps = configUtils.global.getConfigOptions().NPM_FIXED_DEPENDENCIES;
|
|
108
108
|
const configDeps = { ...resolvedDeps, ...fixedDeps };
|
|
109
|
-
return installUtils.common.getResolvedCarretDeps(configDeps, isMaster || isSupportBranch);
|
|
109
|
+
return installUtils.common.getResolvedCarretDeps(configDeps, isMaster || isSupportBranch, !isMaster && !isSupportBranch);
|
|
110
110
|
})
|
|
111
111
|
|
|
112
112
|
// Install dependencies
|
|
@@ -257,7 +257,18 @@ module.exports.build = (pkg) => {
|
|
|
257
257
|
} else {
|
|
258
258
|
return tools.copydir(tmpFolderStyles, distFolder, true, `**/*.map`);
|
|
259
259
|
}
|
|
260
|
-
|
|
260
|
+
})
|
|
261
|
+
.then(() => {
|
|
262
|
+
if (pkg.build.publishSourceFolders) {
|
|
263
|
+
return pkg.build.publishSourceFolders.reduce((promise, folder) => {
|
|
264
|
+
return promise.then(() => (
|
|
265
|
+
tools.copydir(path.join(srcFolder, folder), path.join(distFolder, folder))
|
|
266
|
+
)).catch((e) => {
|
|
267
|
+
console.log(e);
|
|
268
|
+
throw e;
|
|
269
|
+
});
|
|
270
|
+
}, Promise.resolve());
|
|
271
|
+
}
|
|
261
272
|
})
|
|
262
273
|
.then(() => {
|
|
263
274
|
console.log('Output CSS copy succeeded');
|