@eui/tools 6.21.110 → 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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.111
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
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
|
+
* * *
|
|
1
10
|
## 6.21.110 (2025-08-26)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -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
|