@foray1010/stylelint-config 5.0.4 → 6.0.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/index.js +1 -5
  3. package/package.json +6 -7
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
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
+ ## [6.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@6.0.0...@foray1010/stylelint-config@6.0.1) (2022-06-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - should drop node 17 in version range ([0e911fd](https://github.com/foray1010/common-presets/commit/0e911fd737e472d699bfc32d866067ed6ccfa269))
11
+
12
+ ## [6.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.5...@foray1010/stylelint-config@6.0.0) (2022-06-13)
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ - **deps:** drop stylelint <14.9.0
17
+ - drop node 12 and 17
18
+
19
+ ### Bug Fixes
20
+
21
+ - **deps:** update dependency stylelint-config-standard to v26 ([bd9dd3b](https://github.com/foray1010/common-presets/commit/bd9dd3b4b9635dfee022c26d74d182da4bf8c391))
22
+
23
+ ### Miscellaneous Chores
24
+
25
+ - drop node 12 and 17 ([c43351e](https://github.com/foray1010/common-presets/commit/c43351e0da92209fc3100d9cb1bc129af320fdac))
26
+
27
+ ### [5.0.5](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.4...@foray1010/stylelint-config@5.0.5) (2022-04-05)
28
+
29
+ ### Bug Fixes
30
+
31
+ - remove unmaintained stylelint-no-indistinguishable-colors ([8f52c6e](https://github.com/foray1010/common-presets/commit/8f52c6e5f237307d5c5c9aff2f76f98fbe26b4da))
32
+
6
33
  ### [5.0.4](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.3...@foray1010/stylelint-config@5.0.4) (2022-03-20)
7
34
 
8
35
  ### Bug Fixes
package/index.js CHANGED
@@ -8,10 +8,7 @@ module.exports = {
8
8
  // it requires `stylelint-config-prettier`
9
9
  'stylelint-prettier/recommended.js',
10
10
  ],
11
- plugins: [
12
- 'stylelint-no-indistinguishable-colors',
13
- 'stylelint-no-unsupported-browser-features',
14
- ],
11
+ plugins: ['stylelint-no-unsupported-browser-features'],
15
12
  rules: {
16
13
  // false alarms when use with `:root` selector
17
14
  'no-descending-specificity': null,
@@ -27,6 +24,5 @@ module.exports = {
27
24
  severity: 'warning',
28
25
  },
29
26
  ],
30
- 'plugin/stylelint-no-indistinguishable-colors': true,
31
27
  },
32
28
  }
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": "5.0.4",
4
+ "version": "6.0.1",
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,20 +20,19 @@
20
20
  "stylelint-config-css-modules": "^4.0.0",
21
21
  "stylelint-config-idiomatic-order": "^8.1.0",
22
22
  "stylelint-config-prettier": "^9.0.0",
23
- "stylelint-config-standard": "^25.0.0",
24
- "stylelint-no-indistinguishable-colors": "^1.3.0",
23
+ "stylelint-config-standard": "^26.0.0",
25
24
  "stylelint-no-unsupported-browser-features": "^5.0.0",
26
25
  "stylelint-prettier": "^2.0.0"
27
26
  },
28
27
  "peerDependencies": {
29
- "prettier": ">=2 <3",
30
- "stylelint": ">=14 <15"
28
+ "prettier": "^2.0.0",
29
+ "stylelint": "^14.9.0"
31
30
  },
32
31
  "engines": {
33
- "node": "^12.22.0 || ^14.17.0 || >=16.13.0"
32
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
34
33
  },
35
34
  "publishConfig": {
36
35
  "access": "public"
37
36
  },
38
- "gitHead": "a6523662cb883c28d888480f6733dab8a3363dd4"
37
+ "gitHead": "162f905054a12ba6777eb746f2f440a68876463c"
39
38
  }