@workleap/stylelint-configs 2.1.10 → 2.1.11
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/CHANGELOG.md +6 -0
- package/package.json +8 -8
- package/src/index.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @workleap/stylelint-config
|
|
2
2
|
|
|
3
|
+
## 2.1.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#449](https://github.com/workleap/wl-web-configs/pull/449) [`33582c1`](https://github.com/workleap/wl-web-configs/commit/33582c1c96ae8dc4c01afa3893219b4755435028) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Updated dependencies to their latest versions.
|
|
8
|
+
|
|
3
9
|
## 2.1.10
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "@workleap/stylelint-configs",
|
|
4
4
|
"author": "Workleap",
|
|
5
5
|
"description": "Workleap recommended Stylelint configurations.",
|
|
6
|
-
"version": "2.1.
|
|
6
|
+
"version": "2.1.11",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"directory": "packages/stylelint-configs"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"prettier": "^3.
|
|
30
|
+
"prettier": "^3.9.4",
|
|
31
31
|
"stylelint": "^16.26.1"
|
|
32
32
|
},
|
|
33
33
|
"peerDependenciesMeta": {
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@eslint/js": "9.39.2",
|
|
47
|
-
"@types/node": "
|
|
48
|
-
"@typescript-eslint/parser": "8.
|
|
47
|
+
"@types/node": "26.1.0",
|
|
48
|
+
"@typescript-eslint/parser": "8.63.0",
|
|
49
49
|
"@typescript/native-preview": "7.0.0-dev.20260512.1",
|
|
50
50
|
"eslint": "9.39.2",
|
|
51
|
-
"prettier": "3.
|
|
51
|
+
"prettier": "3.9.4",
|
|
52
52
|
"rimraf": "6.1.3",
|
|
53
53
|
"stylelint": "16.26.1",
|
|
54
54
|
"typescript": "6.0.3",
|
|
55
|
-
"typescript-eslint": "8.
|
|
56
|
-
"@workleap/eslint-configs": "2.0.
|
|
57
|
-
"@workleap/typescript-configs": "
|
|
55
|
+
"typescript-eslint": "8.63.0",
|
|
56
|
+
"@workleap/eslint-configs": "2.0.4",
|
|
57
|
+
"@workleap/typescript-configs": "5.0.0"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"prebuild": "pnpm rimraf dist",
|
package/src/index.ts
CHANGED
|
@@ -75,7 +75,7 @@ const config: Config = {
|
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
77
|
|
|
78
|
-
// Using TypeScript "export"
|
|
79
|
-
//
|
|
80
|
-
//
|
|
78
|
+
// Using TypeScript "export =" until Stylelint supports ESM configs.
|
|
79
|
+
// It's the only syntax emitting `module.exports = config`, which Stylelint
|
|
80
|
+
// expects since it loads configs via require().
|
|
81
81
|
export = config;
|