@eui/tools 5.3.71 → 5.3.72

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
- 5.3.71
1
+ 5.3.72
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.3.72 (2022-10-07)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * reverted addition of svg-sprite as not compat with node10- - EUI-6557 [EUI-6557](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6557) ([0841a4b2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0841a4b29ae03f4b085fcb4cf7edfdc8e4eb915d))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.3.71 (2022-10-06)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.71",
3
+ "version": "5.3.72",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -44,7 +44,6 @@
44
44
  "node-fetch": "2.6.7",
45
45
  "sendmail": "1.6.1",
46
46
  "imagemin": "7.0.1",
47
- "imagemin-svgo": "9.0.0",
48
- "svg-sprite": "1.5.3"
47
+ "imagemin-svgo": "9.0.0"
49
48
  }
50
49
  }
package/sandbox.js CHANGED
@@ -864,20 +864,21 @@ const versionUtils = require('./scripts/csdr/version/version-utils');
864
864
 
865
865
 
866
866
 
867
- // const pkg = configUtils.packages.getPackage('opsys-epc-esub-bo-ui', true);
867
+ const pkg = configUtils.packages.getPackage('opsys-epc-esub-bo-ui', true);
868
868
 
869
- // Promise.resolve()
870
- // .then(() => {
871
- // return metadataUtils.package.getPackageVersionsByMajor(pkg, '10', false)
872
- // })
873
- // .then((versions) => {
874
- // console.log(versions);
875
- // })
869
+ Promise.resolve()
870
+ .then(() => {
871
+ return metadataUtils.package.getPackageVersionsByMajor(pkg, '9', false)
872
+ })
873
+ .then((versions) => {
874
+ console.log(versions);
875
+ console.log(versions.splice(-1)[0].version);
876
+ })
876
877
 
877
878
 
878
879
  // PROJECT VERSION CSDR BUILD TESTING (à la carte way === MWP / PMO MOBILE / SEDIA)
879
880
  // --------------------------------------------------------------------------------
880
- const project = configUtils.projects.getProject('pmo-mobile');
881
+ // const project = configUtils.projects.getProject('pmo-mobile');
881
882
 
882
883
  // let versionsMetadata;
883
884
  // let envsMetadata;
@@ -905,10 +906,10 @@ const project = configUtils.projects.getProject('pmo-mobile');
905
906
  // console.log(version);
906
907
  // })
907
908
 
908
- return Promise.resolve()
909
- .then(() => {
910
- const project = configUtils.projects.getProject('eui-sample');
911
- return preBuildUtils.projects.processSvgAssets(project);
912
- })
909
+ // return Promise.resolve()
910
+ // .then(() => {
911
+ // const project = configUtils.projects.getProject('eui-sample');
912
+ // return preBuildUtils.projects.processSvgAssets(project);
913
+ // })
913
914
 
914
915