@eui/tools 6.2.17 → 6.2.18
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.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.2.
|
|
1
|
+
6.2.18
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.2.18 (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) ([b9b7b8ad](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b9b7b8ad9b634c0b4421bac3deadd0440b41e609))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.2.17 (2022-11-12)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -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.
|
|
193
|
+
return tools.copydir(path.join(pkg.paths.dist), path.join(pkg.paths.dist, 'bundles'));
|
|
194
194
|
})
|
|
195
195
|
|
|
196
196
|
.then(() => {
|