@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.
@@ -1 +1 @@
1
- 4.17.1
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.17.1",
3
+ "version": "4.17.2",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
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
- return metadataUtils.app.storeMetadataAssetsStandAlone();
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()
@@ -679,7 +679,8 @@ const tsConfigDef = {
679
679
  ],
680
680
  "lib": [
681
681
  "es2017",
682
- "dom"
682
+ "dom",
683
+ "dom.iterable"
683
684
  ],
684
685
  "paths": {}
685
686
  }
@@ -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) => {