@foray1010/stylelint-config 14.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 CHANGED
@@ -3,6 +3,42 @@
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
+
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)
22
+
23
+ ### ⚠ BREAKING CHANGES
24
+
25
+ - **stylelint-config:** require stylelint ^16.2.0
26
+ - drop stylelint v15
27
+
28
+ ### Features
29
+
30
+ - support stylelint v16 ([2bd3c72](https://github.com/foray1010/common-presets/commit/2bd3c72331e14a0728c4f4932099cb9514a57553))
31
+
32
+ ### Bug Fixes
33
+
34
+ - **deps:** update dependency stylelint-config-standard to v36 ([03948b1](https://github.com/foray1010/common-presets/commit/03948b1cdb90cbc14aa200f9fcf526f380885d89))
35
+ - **deps:** update dependency stylelint-no-unsupported-browser-features to v8 ([51f9f86](https://github.com/foray1010/common-presets/commit/51f9f8656e1845e6e017a39b53442915a8fa000b))
36
+ - **stylelint-config:** update stylelint-config-css-modules to support stylelint v16 ([5ce61a7](https://github.com/foray1010/common-presets/commit/5ce61a7392da1df7db8516397a5149b0ea7bbfc7))
37
+
38
+ ### Miscellaneous Chores
39
+
40
+ - **stylelint-config:** require stylelint ^16.2.0 ([da64e68](https://github.com/foray1010/common-presets/commit/da64e685768f2a70ebc1e4aba567d6797997a645))
41
+
6
42
  ## [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
43
 
8
44
  ### ⚠ 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.js',
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": "14.0.0",
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": {
@@ -21,20 +21,20 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "stylelint-config-concentric-order": "^5.2.0",
24
- "stylelint-config-css-modules": "^4.3.0",
25
- "stylelint-config-standard": "^34.0.0",
26
- "stylelint-no-unsupported-browser-features": "^7.0.0",
27
- "stylelint-prettier": "^4.0.2"
24
+ "stylelint-config-css-modules": "^4.4.0",
25
+ "stylelint-config-standard": "^37.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": "^15.10.0"
31
+ "stylelint": "^16.15.0"
32
32
  },
33
33
  "engines": {
34
- "node": "^18.12.0 || >=20.9.0"
34
+ "node": "^20.10.0 || >=22.11.0"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "45c8e63f5eebfb9caec22faaf5b961154b924f50"
39
+ "gitHead": "7ab2a92cce9564e8f577500663a09ab3a75641ed"
40
40
  }