@eui/tools 5.3.0 → 5.3.1
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 +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/utils/tools.js +0 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.1
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.3.1 (2022-05-31)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* console log wrong declaration - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([beb3c4f3](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/beb3c4f35325569e42630dcd8e5b483d40254d0f))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.3.0 (2022-05-31)
|
|
2
11
|
|
|
3
12
|
##### New Features
|
package/package.json
CHANGED
package/scripts/utils/tools.js
CHANGED
|
@@ -127,11 +127,9 @@ function relativeCopyEol(fileGlob, from, to) {
|
|
|
127
127
|
function copydir(from, to, overwrite = true, globPattern = '**/*') {
|
|
128
128
|
logInfo('----->copydir from : ' + from + ' ====> to : ' + to );
|
|
129
129
|
var files = glob.sync(globPattern, { cwd: from, nodir: true, follow: true, dot: true });
|
|
130
|
-
console.log(files);
|
|
131
130
|
files.forEach(file => {
|
|
132
131
|
const origin = path.join(from, file);
|
|
133
132
|
const dest = path.join(to, file);
|
|
134
|
-
console.logt(origin, dest);
|
|
135
133
|
_recursiveMkDir(path.dirname(dest));
|
|
136
134
|
fse.copySync(origin, dest, { overwrite: overwrite });
|
|
137
135
|
});
|