@foray1010/stylelint-config 17.0.0 → 18.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,21 @@
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
+ ## [18.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@17.0.0...@foray1010/stylelint-config@18.0.0) (2026-05-17)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - **stylelint-config:** require stylelint `^17.11.0`
11
+ - drop node v20 and v25
12
+
13
+ ### Features
14
+
15
+ - **stylelint-config:** require stylelint `^17.11.0`
16
+
17
+ ### Miscellaneous Chores
18
+
19
+ - drop node v20 and v25
20
+
6
21
  ## [17.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@16.0.0...@foray1010/stylelint-config@17.0.0) (2025-10-31)
7
22
 
8
23
  ### ⚠ BREAKING CHANGES
package/README.md CHANGED
@@ -22,21 +22,21 @@ Z for looser rules
22
22
 
23
23
  1. Create an `.stylelintrc.mjs` in the project root
24
24
 
25
- ```js
26
- const config = {
27
- extends: ['@foray1010/stylelint-config'],
28
- }
29
- export default config
30
- ```
25
+ ```js
26
+ const config = {
27
+ extends: ['@foray1010/stylelint-config'],
28
+ }
29
+ export default config
30
+ ```
31
31
 
32
32
  1. Use default stylelintignore via npm script
33
33
 
34
- ```json
35
- {
36
- "scripts": {
37
- "stylelint": "stylelint --ignore-path=node_modules/@foray1010/stylelint-config/stylelintignore"
38
- }
39
- }
40
- ```
34
+ ```json
35
+ {
36
+ "scripts": {
37
+ "stylelint": "stylelint --ignore-path=node_modules/@foray1010/stylelint-config/stylelintignore"
38
+ }
39
+ }
40
+ ```
41
41
 
42
- then use `npm run stylelint` or `yarn stylelint` to replace `stylelint`
42
+ then use `npm run stylelint` or `yarn stylelint` to replace `stylelint`
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": "17.0.0",
4
+ "version": "18.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,22 +20,22 @@
20
20
  "type:check": "tsc"
21
21
  },
22
22
  "dependencies": {
23
- "stylelint-config-concentric-order": "^5.2.1",
24
- "stylelint-config-css-modules": "^4.5.1",
25
- "stylelint-config-standard": "^39.0.1",
26
- "stylelint-gamut": "^1.3.4",
27
- "stylelint-no-unsupported-browser-features": "^8.0.5",
23
+ "stylelint-config-concentric-order": "^5.5.0",
24
+ "stylelint-config-css-modules": "^4.6.0",
25
+ "stylelint-config-standard": "^40.0.0",
26
+ "stylelint-gamut": "^2.0.1",
27
+ "stylelint-no-unsupported-browser-features": "^8.1.1",
28
28
  "stylelint-prettier": "^5.0.3"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "prettier": "^3.6.2",
32
- "stylelint": "^16.25.0"
32
+ "stylelint": "^17.11.0"
33
33
  },
34
34
  "engines": {
35
- "node": "^20.19.0 || ^22.12.0 || >=24.11.0"
35
+ "node": "^22.12.0 || ^24.11.0 || >=26"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "f4d31b1d0075b0c77a6ae59e7442a977df4b4d15"
40
+ "gitHead": "b0dcdf4522afb97a5ee7088c20299aad17738056"
41
41
  }
package/tsconfig.json CHANGED
@@ -3,6 +3,7 @@
3
3
  "extends": "@foray1010/tsconfig/tsconfig.base.json",
4
4
  "compilerOptions": {
5
5
  "allowJs": true,
6
- "checkJs": true
7
- }
6
+ "checkJs": true,
7
+ "types": ["node"],
8
+ },
8
9
  }