@eui/tools 6.2.24 → 6.2.25
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.25
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.2.25 (2022-11-14)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* v10 v15 remotes sync - MWP-9010 [MWP-9010](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9010) ([287d1bf5](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/287d1bf594d1145336ea80f40ec29d6b0dd01430))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.2.24 (2022-11-14)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -194,9 +194,9 @@ module.exports.postBuild = (pkg, version) => {
|
|
|
194
194
|
})
|
|
195
195
|
|
|
196
196
|
.then(() => {
|
|
197
|
-
if (euiVersionNumber >= 15) {
|
|
197
|
+
// if (euiVersionNumber >= 15) {
|
|
198
198
|
return remotesUtils.concatFiles(path.join(pkg.paths.dist, 'bundles'));
|
|
199
|
-
}
|
|
199
|
+
// }
|
|
200
200
|
})
|
|
201
201
|
|
|
202
202
|
.then(() => {
|
|
@@ -65,7 +65,7 @@ module.exports.serve = (remote = false) => {
|
|
|
65
65
|
if (euiVersionNumber <= 10) {
|
|
66
66
|
args.push(`--outputPath=${destPath}`);
|
|
67
67
|
args.push(`--single-bundle=true`);
|
|
68
|
-
args.push('--watch=true');
|
|
68
|
+
// args.push('--watch=true');
|
|
69
69
|
} else {
|
|
70
70
|
args.push(`--output-path=${destPath}`);
|
|
71
71
|
}
|
|
@@ -92,9 +92,9 @@ module.exports.serve = (remote = false) => {
|
|
|
92
92
|
})
|
|
93
93
|
|
|
94
94
|
.then(() => {
|
|
95
|
-
if (euiVersionNumber >= 15) {
|
|
95
|
+
// if (euiVersionNumber >= 15) {
|
|
96
96
|
return remotesUtils.concatFiles(destPath);
|
|
97
|
-
}
|
|
97
|
+
// }
|
|
98
98
|
})
|
|
99
99
|
|
|
100
100
|
.then(() => {
|
|
@@ -102,9 +102,9 @@ module.exports.serve = (remote = false) => {
|
|
|
102
102
|
})
|
|
103
103
|
|
|
104
104
|
.then(() => {
|
|
105
|
-
if (euiVersionNumber >= 15) {
|
|
105
|
+
// if (euiVersionNumber >= 15) {
|
|
106
106
|
return remotesUtils.emptyIndexHtml(destPath);
|
|
107
|
-
}
|
|
107
|
+
// }
|
|
108
108
|
})
|
|
109
109
|
|
|
110
110
|
.catch((e) => {
|