@eui/tools 4.17.8 → 4.17.9
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
|
-
4.17.
|
|
1
|
+
4.17.9
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 4.17.9 (2021-12-06)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* disable style lint for v13 apps - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([9f925fdd](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9f925fdd3ae8e401045fe8979545dbfdb66181a2))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 4.17.8 (2021-12-02)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -88,10 +88,11 @@ module.exports.angular = (envTarget, isSnapshot, version) => {
|
|
|
88
88
|
if (!skipLint) {
|
|
89
89
|
tools.logSuccess();
|
|
90
90
|
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
91
|
+
// temporary disable for v13 apps
|
|
92
|
+
// if (!skipLint) {
|
|
93
|
+
// tools.logInfo(`Styles Linting application...`);
|
|
94
|
+
// return tools.runScript(`stylelint **/*.scss`, currentProject.paths.angularPath);
|
|
95
|
+
// }
|
|
95
96
|
})
|
|
96
97
|
|
|
97
98
|
|