@foray1010/stylelint-config 13.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 CHANGED
@@ -3,6 +3,37 @@
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
+
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)
28
+
29
+ ### ⚠ BREAKING CHANGES
30
+
31
+ - require node `^18.12.0 || >=20.9.0`
32
+
33
+ ### Miscellaneous Chores
34
+
35
+ - require node `^18.12.0 || >=20.9.0` ([e231508](https://github.com/foray1010/common-presets/commit/e231508673cefd6e4792083e4f15fd152446e32d))
36
+
6
37
  ## [13.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@12.0.0...@foray1010/stylelint-config@13.0.0) (2023-08-10)
7
38
 
8
39
  ### ⚠ 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": "13.0.0",
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": {
@@ -20,21 +20,21 @@
20
20
  "type:check": "tsc"
21
21
  },
22
22
  "dependencies": {
23
- "stylelint-config-concentric-order": "^5.1.0",
24
- "stylelint-config-css-modules": "^4.2.0",
25
- "stylelint-config-standard": "^34.0.0",
26
- "stylelint-no-unsupported-browser-features": "^7.0.0",
27
- "stylelint-prettier": "^4.0.0"
23
+ "stylelint-config-concentric-order": "^5.2.0",
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": "^15.10.0"
31
+ "stylelint": "^16.2.0"
32
32
  },
33
33
  "engines": {
34
- "node": "^16.14.0 || >=18.12.0"
34
+ "node": "^18.12.0 || >=20.9.0"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "53eea83670d83a13b40cf0022f24badccfda681c"
39
+ "gitHead": "46fd1d0f56467d4b461f6264eabd040712989a7e"
40
40
  }