@eui/tools 6.21.109 → 6.21.111
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/cli/skeletons/package/frontend/19.x/default/tsconfig.lib.json +9 -3
- package/scripts/csdr/cli/skeletons/package/frontend/19.x/default-sdlc/tsconfig.lib.json +9 -3
- package/scripts/csdr/cli/skeletons/package/frontend/19.x/participant-default/tsconfig.lib.json +9 -3
- package/scripts/csdr/init/standalone/18.x/tsconfig.lib.standalone.json +9 -3
- package/scripts/utils/migrate/migrate-utils.js +6 -2
- package/scripts/utils/migrate/skeleton/package/.gitignore_TO_REPLACE +4 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.111
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.111 (2025-08-27)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted gitignore for sdlc-migrate - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([e1b3b9b8](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/e1b3b9b86e339a4c5ca360287ab5e35e30869283))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.110 (2025-08-26)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* set strict = true and strictTemplates = true. This is just a future proof change for new packages considering is coming soon: https://github.com/microsoft/TypeScript/issues/62333. In general, it helps developers to write better code and costs nothing for new packages. [EUI-11268](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-11268) ([f404b964](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f404b96410331d177b8c383ae33833eabf42a22c))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.109 (2025-08-26)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true
|
|
28
34
|
},
|
|
29
35
|
"exclude": [
|
|
30
36
|
"src/test.ts",
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true
|
|
28
34
|
},
|
|
29
35
|
"exclude": [
|
|
30
36
|
"src/test.ts",
|
package/scripts/csdr/cli/skeletons/package/frontend/19.x/participant-default/tsconfig.lib.json
CHANGED
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true
|
|
28
34
|
},
|
|
29
35
|
"exclude": [
|
|
30
36
|
"src/test.ts",
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"target": "ES2022",
|
|
6
6
|
"module": "ES2022",
|
|
7
7
|
"moduleResolution": "node",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noImplicitReturns": true,
|
|
12
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
13
|
"declaration": true,
|
|
9
14
|
"sourceMap": true,
|
|
10
15
|
"inlineSources": true,
|
|
@@ -20,11 +25,12 @@
|
|
|
20
25
|
},
|
|
21
26
|
"angularCompilerOptions": {
|
|
22
27
|
"annotateForClosureCompiler": true,
|
|
23
|
-
"
|
|
24
|
-
"strictMetadataEmit": true,
|
|
28
|
+
"enableResourceInlining": true,
|
|
25
29
|
"fullTemplateTypeCheck": true,
|
|
30
|
+
"skipTemplateCodegen": true,
|
|
26
31
|
"strictInjectionParameters": true,
|
|
27
|
-
"
|
|
32
|
+
"strictMetadataEmit": true,
|
|
33
|
+
"strictTemplates": true,
|
|
28
34
|
"compilationMode": "partial"
|
|
29
35
|
},
|
|
30
36
|
"exclude": [
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const path = require('path');
|
|
4
4
|
const tools = require('../tools');
|
|
5
5
|
|
|
6
|
-
let { subgroup } = tools.getArgs();
|
|
6
|
+
let { subgroup, remoteNpmPkg } = tools.getArgs();
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
module.exports.migrate = (pkg) => {
|
|
@@ -71,8 +71,12 @@ module.exports.migrate = (pkg) => {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
tools.logInfo('Duplicating remote config');
|
|
74
|
+
|
|
75
|
+
let remotePrefix = `${pkg.npmPkg.split('/')[0].substr(1)}-${pkg.npmPkg.split('/')[1]}`;
|
|
74
76
|
|
|
75
|
-
|
|
77
|
+
if (remoteNpmPkg) {
|
|
78
|
+
remotePrefix = `${remoteNpmPkg.split('/')[0].substr(1)}-${remoteNpmPkg.split('/')[1]}`;
|
|
79
|
+
}
|
|
76
80
|
|
|
77
81
|
// getting eUI version for package
|
|
78
82
|
const depsJson = require(path.join(pkg.paths.root, 'dependencies-composite.json'));
|
|
@@ -53,15 +53,18 @@ Thumbs.db
|
|
|
53
53
|
# CI generated
|
|
54
54
|
.browserslistrc
|
|
55
55
|
variables
|
|
56
|
-
version.properties
|
|
56
|
+
.version.properties
|
|
57
57
|
audit.json
|
|
58
58
|
angular.json
|
|
59
59
|
.eslintrc.eui19.standalone.json
|
|
60
|
+
.eslintrc.eui19.standalone-relaxed.json
|
|
60
61
|
.eslintrc.eui18.standalone.json
|
|
61
62
|
.eslintrc.standalone.json
|
|
63
|
+
.eslintrc.standalone-relaxed.json
|
|
62
64
|
tsconfig.standalone.json
|
|
63
65
|
tsconfig.lib.standalone.json
|
|
64
66
|
tsconfig.spec.standalone.json
|
|
65
67
|
tsconfig.spec.standalone-subentry.json
|
|
66
68
|
karma.conf.standalone.js
|
|
67
69
|
yarn.lock
|
|
70
|
+
sonar-project.properties
|