@eui/tools 5.3.66 → 5.3.68

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.66
1
+ 5.3.68
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## 5.3.68 (2022-10-02)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * generated eui icon set - sprite generator script - cleanup ECL import script - cleanup - EUI-6562 [EUI-6562](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6562) ([c610a9e9](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c610a9e9b5c6d216bd6adc8b9951f92bcf1383fe))
7
+ * added svg sprite generator utils - EUI-6427 [EUI-6427](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6427) ([89127a7d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/89127a7dbcd72fa20a1a04478c79ee733ccac5e6))
8
+
9
+ * * *
10
+ * * *
11
+ ## 5.3.67 (2022-09-30)
12
+
13
+ ##### Chores
14
+
15
+ * **other:**
16
+ * updated yarn.lock for eUI15 - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([f48e648f](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f48e648f53fd444083f777ac62e33ae1436b2d97))
17
+
18
+ * * *
19
+ * * *
1
20
  ## 5.3.66 (2022-09-30)
2
21
 
3
22
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.66",
3
+ "version": "5.3.68",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -42,6 +42,9 @@
42
42
  "chai": "4.3.6",
43
43
  "nyc": "15.1.0",
44
44
  "node-fetch": "2.6.7",
45
- "sendmail": "1.6.1"
45
+ "sendmail": "1.6.1",
46
+ "imagemin": "7.0.1",
47
+ "imagemin-svgo": "9.0.0",
48
+ "svgstore": "3.0.1"
46
49
  }
47
50
  }
package/sandbox.js CHANGED
@@ -15,6 +15,7 @@ const injectionUtils = require('./scripts/utils/pre-build/injection/injection-ut
15
15
  const installUtils = require('./scripts/csdr/install/install-utils');
16
16
  const notificationUtils = require('./scripts/utils/notification/notification-utils');
17
17
  const translationUtils = require('./scripts/utils/pre-build/translations/translation-utils');
18
+ const preBuildUtils = require('./scripts/utils/pre-build/pre-build-utils');
18
19
  const apiUtils = require('./scripts/utils/api-utils');
19
20
  const versionUtils = require('./scripts/csdr/version/version-utils');
20
21
 
@@ -881,7 +882,7 @@ const project = configUtils.projects.getProject('pmo-mobile');
881
882
  // let versionsMetadata;
882
883
  // let envsMetadata;
883
884
 
884
- return Promise.resolve()
885
+ // return Promise.resolve()
885
886
  // .then(() => {
886
887
  // return metadataUtils.appVersions.getMetadata(project);
887
888
  // })
@@ -897,11 +898,17 @@ return Promise.resolve()
897
898
  // .then(() => {
898
899
  // return versionUtils.common.getNewVersionDTAP('DEV', versionsMetadata, envsMetadata);
899
900
  // })
901
+ // .then(() => {
902
+ // return versionUtils.appEnvTarget.getNewVersion(project, 'DEV');
903
+ // })
904
+ // .then((version) => {
905
+ // console.log(version);
906
+ // })
907
+
908
+ return Promise.resolve()
900
909
  .then(() => {
901
- return versionUtils.appEnvTarget.getNewVersion(project, 'DEV');
902
- })
903
- .then((version) => {
904
- console.log(version);
910
+ const project = configUtils.projects.getProject('eui-sample');
911
+ return preBuildUtils.projects.processSvgAssets(project);
905
912
  })
906
913
 
907
914