@eui/tools 4.17.1 → 4.17.2
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 +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/sandbox.js +15 -1
- package/scripts/csdr/config/angular.js +2 -1
- package/scripts/csdr/init/init-utils.js +7 -0
- package/scripts/csdr/init/resources/13.x/yarn.lock +14907 -0
- package/scripts/csdr/metadata/package.js +23 -0
- package/scripts/csdr/release/package/common.js +13 -0
- package/scripts/csdr/release/package/release-package.js +6 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.17.
|
|
1
|
+
4.17.2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 4.17.2 (2021-11-23)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adding yarn.lock forcing for eUI 13.x - added metadata assets storage for remote elements - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([5e940892](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5e940892aa982ef9286553696a9c54ffddecfde1))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 4.17.1 (2021-11-19)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -599,7 +599,21 @@ const notificationUtils = require('./scripts/utils/notification/notification-uti
|
|
|
599
599
|
// })
|
|
600
600
|
return Promise.resolve()
|
|
601
601
|
.then(() => {
|
|
602
|
-
|
|
602
|
+
console.log('t1')
|
|
603
|
+
console.log(new Date());
|
|
604
|
+
|
|
605
|
+
return new Promise((resolve) => {
|
|
606
|
+
setTimeout(resolve, 8000);
|
|
607
|
+
});
|
|
608
|
+
})
|
|
609
|
+
|
|
610
|
+
.then(() => {
|
|
611
|
+
console.log('t2')
|
|
612
|
+
console.log(new Date());
|
|
613
|
+
})
|
|
614
|
+
|
|
615
|
+
.then(() => {
|
|
616
|
+
console.log('T3')
|
|
603
617
|
})
|
|
604
618
|
|
|
605
619
|
// return Promise.resolve()
|
|
@@ -217,6 +217,13 @@ module.exports.processLocalEuiVersions = () => {
|
|
|
217
217
|
const blDestFile = path.join(process.cwd(), '.browserslistrc');
|
|
218
218
|
|
|
219
219
|
tools.copy(blResourcesFile, blDestFile);
|
|
220
|
+
|
|
221
|
+
tools.logInfo(`Processing yarn.lock replacement for eUI version found : ${euiVersion}`);
|
|
222
|
+
|
|
223
|
+
const yResourcesFile = path.join(__dirname, 'resources', euiVersion, 'yarn.lock');
|
|
224
|
+
const yDestFile = path.join(process.cwd(), 'yarn.lock');
|
|
225
|
+
|
|
226
|
+
tools.copy(yResourcesFile, yDestFile);
|
|
220
227
|
}
|
|
221
228
|
})
|
|
222
229
|
.catch((e) => {
|