@foray1010/stylelint-config 5.0.3 → 6.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/index.js +1 -5
  3. package/package.json +7 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,35 @@
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.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.5...@foray1010/stylelint-config@6.0.0) (2022-06-13)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - drop support for typescript >=5
11
+ - **deps:** drop stylelint <14.9.0
12
+ - drop node 12 and 17
13
+
14
+ ### Bug Fixes
15
+
16
+ - **deps:** update dependency stylelint-config-standard to v26 ([bd9dd3b](https://github.com/foray1010/common-presets/commit/bd9dd3b4b9635dfee022c26d74d182da4bf8c391))
17
+
18
+ ### Miscellaneous Chores
19
+
20
+ - drop node 12 and 17 ([c43351e](https://github.com/foray1010/common-presets/commit/c43351e0da92209fc3100d9cb1bc129af320fdac))
21
+ - remove peerDependencies versions that are not sure if supported ([2175adb](https://github.com/foray1010/common-presets/commit/2175adb62efe7d1762f6f66ce9bb0e7adb5f82e5))
22
+
23
+ ### [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)
24
+
25
+ ### Bug Fixes
26
+
27
+ - remove unmaintained stylelint-no-indistinguishable-colors ([8f52c6e](https://github.com/foray1010/common-presets/commit/8f52c6e5f237307d5c5c9aff2f76f98fbe26b4da))
28
+
29
+ ### [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)
30
+
31
+ ### Bug Fixes
32
+
33
+ - **deps:** update dependency stylelint-config-css-modules to v4 ([8b6e977](https://github.com/foray1010/common-presets/commit/8b6e9777ddc895beba0ba31b28a31f4b2ef12cbb))
34
+
6
35
  ### [5.0.3](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.2...@foray1010/stylelint-config@5.0.3) (2022-03-07)
7
36
 
8
37
  ### 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.3",
4
+ "version": "6.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": {
@@ -17,23 +17,22 @@
17
17
  "stylelintignore"
18
18
  ],
19
19
  "dependencies": {
20
- "stylelint-config-css-modules": "^3.0.0",
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": "c249d34848537c4a5048e76f306dbe4b1fa28e7f"
37
+ "gitHead": "6b2dbe64ac8e4677dfb6b72f70e185bcd607f17b"
39
38
  }