@foray1010/stylelint-config 14.0.0 → 15.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 +21 -0
- package/index.mjs +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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
|
+
## [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
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- **stylelint-config:** require stylelint ^16.2.0
|
|
11
|
+
- drop stylelint v15
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- support stylelint v16 ([2bd3c72](https://github.com/foray1010/common-presets/commit/2bd3c72331e14a0728c4f4932099cb9514a57553))
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- **deps:** update dependency stylelint-config-standard to v36 ([03948b1](https://github.com/foray1010/common-presets/commit/03948b1cdb90cbc14aa200f9fcf526f380885d89))
|
|
20
|
+
- **deps:** update dependency stylelint-no-unsupported-browser-features to v8 ([51f9f86](https://github.com/foray1010/common-presets/commit/51f9f8656e1845e6e017a39b53442915a8fa000b))
|
|
21
|
+
- **stylelint-config:** update stylelint-config-css-modules to support stylelint v16 ([5ce61a7](https://github.com/foray1010/common-presets/commit/5ce61a7392da1df7db8516397a5149b0ea7bbfc7))
|
|
22
|
+
|
|
23
|
+
### Miscellaneous Chores
|
|
24
|
+
|
|
25
|
+
- **stylelint-config:** require stylelint ^16.2.0 ([da64e68](https://github.com/foray1010/common-presets/commit/da64e685768f2a70ebc1e4aba567d6797997a645))
|
|
26
|
+
|
|
6
27
|
## [14.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@13.0.0...@foray1010/stylelint-config@14.0.0) (2023-11-17)
|
|
7
28
|
|
|
8
29
|
### ⚠ BREAKING CHANGES
|
package/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ const stylelintConfig = {
|
|
|
4
4
|
'stylelint-config-standard',
|
|
5
5
|
'stylelint-config-css-modules',
|
|
6
6
|
'stylelint-config-concentric-order',
|
|
7
|
-
'stylelint-prettier/recommended
|
|
7
|
+
'stylelint-prettier/recommended',
|
|
8
8
|
],
|
|
9
9
|
plugins: ['stylelint-no-unsupported-browser-features'],
|
|
10
10
|
rules: {
|
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": "15.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": {
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"stylelint-config-concentric-order": "^5.2.0",
|
|
24
|
-
"stylelint-config-css-modules": "^4.
|
|
25
|
-
"stylelint-config-standard": "^
|
|
26
|
-
"stylelint-no-unsupported-browser-features": "^
|
|
27
|
-
"stylelint-prettier": "^
|
|
24
|
+
"stylelint-config-css-modules": "^4.4.0",
|
|
25
|
+
"stylelint-config-standard": "^36.0.0",
|
|
26
|
+
"stylelint-no-unsupported-browser-features": "^8.0.0",
|
|
27
|
+
"stylelint-prettier": "^5.0.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prettier": "^3.0.0",
|
|
31
|
-
"stylelint": "^
|
|
31
|
+
"stylelint": "^16.2.0"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": "^18.12.0 || >=20.9.0"
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "46fd1d0f56467d4b461f6264eabd040712989a7e"
|
|
40
40
|
}
|