@eui/tools 6.2.19 → 6.2.20

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
- 6.2.19
1
+ 6.2.20
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.2.20 (2022-11-12)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * wrong destination path post-build - MWP-9010 [MWP-9010](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9010) ([d71e8385](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d71e8385fe0d7d83ecad859c8e594c519e0f580f))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.2.19 (2022-11-12)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.2.19",
3
+ "version": "6.2.20",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -4,5 +4,11 @@
4
4
  "files": [
5
5
  "bundles"
6
6
  ],
7
- "dependencies": {}
7
+ "dependencies": {},
8
+ "resolutions": {
9
+ "@types/node": ">=14.14.10",
10
+ "https-proxy-agent": "2.2.3",
11
+ "mem": ">=4.3.0 <=8.1.1",
12
+ "zone.js": ">=0.11.5"
13
+ }
8
14
  }
@@ -609,7 +609,7 @@ module.exports.exportPipelineVariables = (pkg, compositeType) => {
609
609
  utils.tools.logWarning('dryRun...skipping export');
610
610
  } else {
611
611
  utils.tools.logInfo('Exporting appTarget variable');
612
- return utils.pipeline.setVariables(pkg.paths.rootDirectory, variablesContent);
612
+ return utils.pipeline.setVariables(pkg.paths.root, variablesContent);
613
613
  }
614
614
  }
615
615
  })