@foray1010/stylelint-config 10.1.1 → 12.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 +26 -0
- package/package.json +5 -5
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
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
|
+
## [12.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@11.0.0...@foray1010/stylelint-config@12.0.0) (2023-04-22)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- **deps:** require stylelint `^15.5.0`
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **deps:** update dependency stylelint-config-standard to v33 ([799d48f](https://github.com/foray1010/common-presets/commit/799d48f6592e4d73b1d4f7b67f6744e1cda7db96))
|
|
15
|
+
|
|
16
|
+
## [11.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@10.1.1...@foray1010/stylelint-config@11.0.0) (2023-03-23)
|
|
17
|
+
|
|
18
|
+
### ⚠ BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
- require node `^16.14.0 || >=18.12.0`
|
|
21
|
+
- **stylelint-config:** require stylelint `^15.3.0`
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- **tsconfig:** split tsconfig to mutliple files for different scenarios ([fcaf3ae](https://github.com/foray1010/common-presets/commit/fcaf3aee3f9f1851439d01631c2e8584bde685ba))
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
- require node `^16.14.0 || >=18.12.0` ([5baf6eb](https://github.com/foray1010/common-presets/commit/5baf6eba6d42958596c130724a502c59fe1a4e83))
|
|
30
|
+
- **stylelint-config:** update stylelint-config-standard to v31 ([8a5afc5](https://github.com/foray1010/common-presets/commit/8a5afc5b76d887269c0607b687ee2726fef85144))
|
|
31
|
+
|
|
6
32
|
## [10.1.1](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@10.1.0...@foray1010/stylelint-config@10.1.1) (2023-02-25)
|
|
7
33
|
|
|
8
34
|
### Bug Fixes
|
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": "
|
|
4
|
+
"version": "12.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": {
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"stylelint-config-concentric-order": "^5.1.0",
|
|
24
24
|
"stylelint-config-css-modules": "^4.2.0",
|
|
25
|
-
"stylelint-config-standard": "^
|
|
25
|
+
"stylelint-config-standard": "^33.0.0",
|
|
26
26
|
"stylelint-no-unsupported-browser-features": "^6.1.0",
|
|
27
27
|
"stylelint-prettier": "^3.0.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prettier": "^2.0.0",
|
|
31
|
-
"stylelint": "^15.
|
|
31
|
+
"stylelint": "^15.5.0"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": "^
|
|
34
|
+
"node": "^16.14.0 || >=18.12.0"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "0bfecd900cd5d2e0b72ad9c3191c821f5708b51e"
|
|
40
40
|
}
|