@eui/tools 6.3.5 → 6.3.6
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.3.
|
|
1
|
+
6.3.6
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 6.3.6 (2023-02-01)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* avoid source-map generation at remote serve time - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([532dbd61](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/532dbd610126f7dcf498316e1869314ac8fb77c6))
|
|
7
|
+
* added vendor file to remote serve for local testing - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([79cd8b2a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/79cd8b2abf0919b16b71a35de1f2dc1211f2308e))
|
|
8
|
+
|
|
9
|
+
* * *
|
|
10
|
+
* * *
|
|
1
11
|
## 6.3.5 (2023-02-01)
|
|
2
12
|
|
|
3
13
|
##### Bug Fixes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const installUtils = require('../../scripts/csdr/install/install-utils');
|
|
4
4
|
const tools = require('../../scripts/utils/tools');
|
|
5
5
|
|
|
6
|
-
const { pkg } = tools.getArgs();
|
|
6
|
+
const { pkg, remote } = tools.getArgs();
|
|
7
7
|
|
|
8
8
|
Promise.resolve()
|
|
9
9
|
.then(() => {
|
|
@@ -11,7 +11,11 @@ Promise.resolve()
|
|
|
11
11
|
if (pkg) {
|
|
12
12
|
return installUtils.localDev.installPackage(pkg);
|
|
13
13
|
} else {
|
|
14
|
-
|
|
14
|
+
if (remote) {
|
|
15
|
+
return installUtils.localDev.installRemote(remote);
|
|
16
|
+
} else {
|
|
17
|
+
return installUtils.localDev.install();
|
|
18
|
+
}
|
|
15
19
|
}
|
|
16
20
|
|
|
17
21
|
})
|
package/package.json
CHANGED
|
@@ -19,11 +19,14 @@ module.exports.concatFiles = (workingPath, euiVersionNumber = 10) => {
|
|
|
19
19
|
...(euiVersionNumber >= 15 ? ['runtime.js'] : []),
|
|
20
20
|
'polyfills.js',
|
|
21
21
|
'scripts.js',
|
|
22
|
+
...(tools.isFileExists(path.join(workingPath, 'vendor.js')) ? ['vendor.js'] : []),
|
|
22
23
|
'main-old.js'
|
|
23
24
|
].map(f => path.join(workingPath, f));
|
|
24
25
|
|
|
25
26
|
const outFilePath = path.join(workingPath, 'main.js');
|
|
26
27
|
|
|
28
|
+
console.log(files);
|
|
29
|
+
|
|
27
30
|
return concat(files, outFilePath);
|
|
28
31
|
})
|
|
29
32
|
|