@eui/tools 6.21.21 → 6.21.22
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.22
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.22 (2025-01-06)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted v18 deps injected for eslint builder not found issue - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([16910ea4](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/16910ea4dca3ddcfdbb99d6e722c0e3abeadbb24))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.21 (2025-01-06)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -11,12 +11,5 @@
|
|
|
11
11
|
"body-parser": ">=1.20.3",
|
|
12
12
|
"rollup": ">=4.22.4",
|
|
13
13
|
"cross-spawn": ">=7.0.5",
|
|
14
|
-
"mermaid": ">=10.9.3"
|
|
15
|
-
"@angular-eslint/builder": "18.3.0",
|
|
16
|
-
"@angular-eslint/eslint-plugin": "18.3.0",
|
|
17
|
-
"@angular-eslint/eslint-plugin-template": "18.3.0",
|
|
18
|
-
"@angular-eslint/schematics": "18.3.0",
|
|
19
|
-
"@angular-eslint/template-parser": "18.3.0",
|
|
20
|
-
"@typescript-eslint/parser": "7.16.1",
|
|
21
|
-
"@typescript-eslint/eslint-plugin": "7.16.1"
|
|
14
|
+
"mermaid": ">=10.9.3"
|
|
22
15
|
}
|
|
@@ -44,6 +44,19 @@ module.exports.installDeps = (deps) => {
|
|
|
44
44
|
}
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
|
+
|
|
48
|
+
// special injection for eslint builder missing / clash with eslint version from eUI / others sub-libs
|
|
49
|
+
if (euiVersionNumber === 18) {
|
|
50
|
+
deps["@angular-eslint/builder"] = "18.3.0";
|
|
51
|
+
deps["@angular-eslint/eslint-plugin"] = "18.3.0";
|
|
52
|
+
deps["@angular-eslint/eslint-plugin-template"] = "18.3.0";
|
|
53
|
+
deps["@angular-eslint/schematics"] = "18.3.0";
|
|
54
|
+
deps["@angular-eslint/template-parser"] = "18.3.0";
|
|
55
|
+
deps["eslint-plugin-prefer-arrow"] = "1.2.3";
|
|
56
|
+
deps["eslint-plugin-jsdoc"] = "48.7.0";
|
|
57
|
+
deps["@typescript-eslint/parser"] = "7.16.1";
|
|
58
|
+
deps["@typescript-eslint/eslint-plugin"] = "7.16.1";
|
|
59
|
+
}
|
|
47
60
|
})
|
|
48
61
|
|
|
49
62
|
// Install dependencies
|