@eui/tools 6.16.36 → 6.17.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 +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes/18.x/base/angular.esbuild.json +0 -1
- package/scripts/csdr/init/remotes/18.x/base/angular.json +0 -1
- package/scripts/csdr/init/remotes/18.x/base/package.json_TO_REPLACE +8 -0
- package/scripts/utils/remotes/remotes-utils.js +6 -5
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.
|
|
1
|
+
6.17.1
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.17.1 (2024-07-19)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* avoid common node imports problems MWP-11061 [MWP-11061](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11061) ([d5ff35d3](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d5ff35d38ca46a7c912c6165c5ab2a70b99ffc6f))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.17.0 (2024-07-18)
|
|
11
|
+
|
|
12
|
+
##### New Features
|
|
13
|
+
|
|
14
|
+
* **remotes:**
|
|
15
|
+
* 2 points: - make the concatenation of remote files completely "files existance" driven (this way it better support esbuild output); - as a secondary improvement, the webcomponent shim is removed (all major browsers support webcomponents). [MWP-11061](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11061) ([fa6424ca](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/fa6424cabe67caa1426afff18dec94d9e6b8dc3a))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.16.36 (2024-07-18)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -11,16 +11,17 @@ const tools = require('../tools');
|
|
|
11
11
|
module.exports.concatFiles = (pkg, workingPath, euiVersionNumber = 10) => {
|
|
12
12
|
return Promise.resolve()
|
|
13
13
|
.then(() => {
|
|
14
|
-
tools.logInfo('
|
|
14
|
+
tools.logInfo('Concatenating JS files into main.js');
|
|
15
15
|
|
|
16
16
|
tools.move(path.join(workingPath, 'main.js'), path.join(workingPath, 'main-old.js'));
|
|
17
17
|
|
|
18
18
|
const files = [
|
|
19
|
-
|
|
20
|
-
'
|
|
21
|
-
'
|
|
19
|
+
// covers both webpack and esbuild
|
|
20
|
+
...(tools.isFileExists(path.join(workingPath, 'runtime.js')) ? ['runtime.js'] : []),
|
|
21
|
+
...(tools.isFileExists(path.join(workingPath, 'polyfills.js')) ? ['polyfills.js'] : []),
|
|
22
|
+
...(tools.isFileExists(path.join(workingPath, 'scripts.js')) ? ['scripts.js'] : []),
|
|
22
23
|
...(tools.isFileExists(path.join(workingPath, 'vendor.js')) ? ['vendor.js'] : []),
|
|
23
|
-
'main-old.js'
|
|
24
|
+
'main-old.js',
|
|
24
25
|
].map(f => path.join(workingPath, f));
|
|
25
26
|
|
|
26
27
|
const outFilePath = path.join(workingPath, 'main.js');
|