@foray1010/stylelint-config 15.0.0 → 16.0.0
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 +15 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [16.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@15.0.0...@foray1010/stylelint-config@16.0.0) (2025-03-11)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- **stylelint-config:** require nodejs `^20.10.0 || >=22.11.0`
|
|
11
|
+
- **deps:** require stylelint `^16.15.0`
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **deps:** update dependency stylelint-config-standard to v37 ([2b4e8bf](https://github.com/foray1010/common-presets/commit/2b4e8bf11947d12721d081c879e4beaca19fb90e))
|
|
16
|
+
|
|
17
|
+
### Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
- **stylelint-config:** require nodejs `^20.10.0 || >=22.11.0` ([dc98275](https://github.com/foray1010/common-presets/commit/dc982755c5d2d08c10a0fcdf688c5b35e0785206))
|
|
20
|
+
|
|
6
21
|
## [15.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@14.0.0...@foray1010/stylelint-config@15.0.0) (2024-01-20)
|
|
7
22
|
|
|
8
23
|
### ⚠ BREAKING CHANGES
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@foray1010/stylelint-config",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "16.0.0",
|
|
5
5
|
"homepage": "https://github.com/foray1010/common-presets/tree/master/packages/stylelint-config#readme",
|
|
6
6
|
"bugs": "https://github.com/foray1010/common-presets/issues",
|
|
7
7
|
"repository": {
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"stylelint-config-concentric-order": "^5.2.0",
|
|
24
24
|
"stylelint-config-css-modules": "^4.4.0",
|
|
25
|
-
"stylelint-config-standard": "^
|
|
25
|
+
"stylelint-config-standard": "^37.0.0",
|
|
26
26
|
"stylelint-no-unsupported-browser-features": "^8.0.0",
|
|
27
27
|
"stylelint-prettier": "^5.0.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prettier": "^3.0.0",
|
|
31
|
-
"stylelint": "^16.
|
|
31
|
+
"stylelint": "^16.15.0"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": "^
|
|
34
|
+
"node": "^20.10.0 || >=22.11.0"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "7ab2a92cce9564e8f577500663a09ab3a75641ed"
|
|
40
40
|
}
|