@eui/tools 6.2.17 → 6.2.19

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.17
1
+ 6.2.19
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.2.19 (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) ([266f6162](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/266f616252f4b89c64ecafa9b4e347b13bff90b4))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.2.18 (2022-11-12)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * wrong destination path post-build - MWP-9010 [MWP-9010](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9010) ([b9b7b8ad](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b9b7b8ad9b634c0b4421bac3deadd0440b41e609))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.2.17 (2022-11-12)
2
20
 
3
21
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.2.17",
3
+ "version": "6.2.19",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -96,7 +96,7 @@ const storeMetadata = (pkg, diffMetadata, newVersion) => {
96
96
  tools.logInfo(`Unique issues found for this version : ${issuesList}`);
97
97
 
98
98
  if (!dryRun) {
99
- return pipelineUtils.setVariables(pkg.paths.rootDirectory, `export ISSUES_LIST=${issuesList}\n`);
99
+ return pipelineUtils.setVariables(pkg.paths.root, `export ISSUES_LIST=${issuesList}\n`);
100
100
  }
101
101
  }
102
102
  })
@@ -190,7 +190,7 @@ module.exports.postBuild = (pkg, version) => {
190
190
  tools.logTitle('ELEMENT POST build');
191
191
  tools.logInfo('Copying dist to bundles folder');
192
192
  tools.mkdir(path.join(pkg.paths.dist, 'bundles'));
193
- return tools.copydir(path.join(pkg.paths.pkgBuild), path.join(pkg.paths.dist, 'bundles'));
193
+ return tools.copydir(path.join(pkg.paths.dist), path.join(pkg.paths.dist, 'bundles'));
194
194
  })
195
195
 
196
196
  .then(() => {