@eui/tools 6.21.100 → 6.21.102
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 +21 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes/19.x/base/angular.esbuild.json +2 -4
- package/scripts/csdr/init/remotes/19.x/full/common/main.ts +2 -0
- package/scripts/csdr/init/remotes/19.x/full/common/polyfills.ts +2 -2
- package/scripts/utils/migrate/migrate-utils.js +12 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.102
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## 6.21.102 (2025-07-11)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* merge from master MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([276d4d6a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/276d4d6aa076b735f8799062971ded646c086a2b))
|
|
7
|
+
* forgot to remove it from polyfills for webpack-based builds MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([f504034e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f504034ef21434d67ff2c016294775baecf5213b))
|
|
8
|
+
* add explicit zone.js loading for v19 remotes loaded in an iframe MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([e9acdd19](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/e9acdd194fee5f8ea9146c7a0c3ec6f253b8ff6c))
|
|
9
|
+
|
|
10
|
+
* * *
|
|
11
|
+
* * *
|
|
12
|
+
## 6.21.101 (2025-07-11)
|
|
13
|
+
|
|
14
|
+
##### Chores
|
|
15
|
+
|
|
16
|
+
* **other:**
|
|
17
|
+
* adapted migration script - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([0ff39a5a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0ff39a5a161906c17c91d7321c9ec8b536326810))
|
|
18
|
+
* adapted to subgroup parameter usage for sedia packages ([bdb08208](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/bdb082085a77ef87c183d4df29ea06fb2f19aad8))
|
|
19
|
+
|
|
20
|
+
* * *
|
|
21
|
+
* * *
|
|
1
22
|
## 6.21.100 (2025-07-09)
|
|
2
23
|
|
|
3
24
|
##### Chores
|
package/package.json
CHANGED
|
@@ -70,13 +70,13 @@
|
|
|
70
70
|
/***************************************************************************************************
|
|
71
71
|
* Zone JS is required by default for Angular itself.
|
|
72
72
|
*/
|
|
73
|
-
import 'zone.js'; // Included with Angular CLI.
|
|
73
|
+
// import 'zone.js'; // Included with Angular CLI.
|
|
74
74
|
|
|
75
75
|
/***************************************************************************************************
|
|
76
76
|
* APPLICATION IMPORTS
|
|
77
77
|
*/
|
|
78
78
|
|
|
79
|
-
|
|
79
|
+
/**
|
|
80
80
|
* Date, currency, decimal and percent pipes.
|
|
81
81
|
* Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
|
|
82
82
|
*/
|
|
@@ -3,10 +3,18 @@
|
|
|
3
3
|
const path = require('path');
|
|
4
4
|
const tools = require('../tools');
|
|
5
5
|
|
|
6
|
+
let { subgroup } = tools.getArgs();
|
|
7
|
+
|
|
8
|
+
|
|
6
9
|
module.exports.migrate = (pkg) => {
|
|
7
10
|
return Promise.resolve()
|
|
8
11
|
.then(() => {
|
|
9
|
-
|
|
12
|
+
|
|
13
|
+
if (!subgroup) {
|
|
14
|
+
subgroup = 'myworkplace-ui';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
tools.logTitle(`Migrating package ${pkg.name} for subgroup ${subgroup}`);
|
|
10
18
|
|
|
11
19
|
console.log(pkg);
|
|
12
20
|
|
|
@@ -15,7 +23,7 @@ module.exports.migrate = (pkg) => {
|
|
|
15
23
|
let pkgDef = {
|
|
16
24
|
"name": pkg.name,
|
|
17
25
|
"npmPkg": pkg.npmPkg,
|
|
18
|
-
"repository":
|
|
26
|
+
"repository": `${subgroup}/${pkg.name}.git`,
|
|
19
27
|
"sdlc": true
|
|
20
28
|
};
|
|
21
29
|
console.log(pkgDef);
|
|
@@ -32,7 +40,7 @@ module.exports.migrate = (pkg) => {
|
|
|
32
40
|
|
|
33
41
|
pkgDef = {
|
|
34
42
|
"npmPkg": pkg.npmPkg,
|
|
35
|
-
"subgroup":
|
|
43
|
+
"subgroup": subgroup
|
|
36
44
|
};
|
|
37
45
|
console.log(pkgDef);
|
|
38
46
|
|
|
@@ -115,6 +123,7 @@ module.exports.migrate = (pkg) => {
|
|
|
115
123
|
|
|
116
124
|
|
|
117
125
|
|
|
126
|
+
|
|
118
127
|
tools.logInfo('Initializing remote trigger repository');
|
|
119
128
|
|
|
120
129
|
|