@pengzhanbo/stylelint-config 1.48.0 → 2.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/README.md +1 -0
- package/dist/index.mjs +2 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -47,6 +47,7 @@ In `.stylelintrc.json`
|
|
|
47
47
|
- [@pengzhanbo/eslint-config-react](https://github.com/pengzhanbo/configs/tree/main/packages/eslint-config-react)
|
|
48
48
|
- [@pengzhanbo/eslint-config-svelte](https://github.com/pengzhanbo/configs/tree/main/packages/eslint-config-svelte)
|
|
49
49
|
- [@pengzhanbo/eslint-config-solid](https://github.com/pengzhanbo/configs/tree/main/packages/eslint-config-solid)
|
|
50
|
+
- [@pengzhanbo/eslint-config-angular](https://github.com/pengzhanbo/configs/tree/main/packages/eslint-config-angular)
|
|
50
51
|
- [@pengzhanbo/eslint-config-astro](https://github.com/pengzhanbo/configs/tree/main/packages/eslint-config-astro)
|
|
51
52
|
- [@pengzhanbo/prettier-config](https://github.com/pengzhanbo/configs/tree/main/packages/prettier-config)
|
|
52
53
|
- [@pengzhanbo/stylelint-config](https://github.com/pengzhanbo/configs/tree/main/packages/stylelint-config)
|
package/dist/index.mjs
CHANGED
|
@@ -669,11 +669,10 @@ function stylelintConfig(options = {}, userConfig = {}) {
|
|
|
669
669
|
};
|
|
670
670
|
return config;
|
|
671
671
|
}
|
|
672
|
-
var config_default = stylelintConfig;
|
|
673
672
|
|
|
674
673
|
//#endregion
|
|
675
674
|
//#region src/index.ts
|
|
676
|
-
var src_default =
|
|
675
|
+
var src_default = stylelintConfig();
|
|
677
676
|
|
|
678
677
|
//#endregion
|
|
679
|
-
export { src_default as default,
|
|
678
|
+
export { src_default as default, stylelintConfig };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pengzhanbo/stylelint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"author": "pengzhanbo <q942450674@outlook.com> (https://github/pengzhanbo/)",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/pengzhanbo/configs#readme",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"stylelint": "^17.
|
|
25
|
+
"stylelint": "^17.2.0"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@pengzhanbo/utils": "^3.
|
|
28
|
+
"@pengzhanbo/utils": "^3.2.0",
|
|
29
29
|
"@stylelint-types/stylelint-order": "^7.0.1",
|
|
30
30
|
"@stylelint-types/stylelint-scss": "^7.0.0",
|
|
31
31
|
"@stylelint-types/stylelint-stylistic": "^5.0.0",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"stylelint-config-html": "^1.1.0",
|
|
37
37
|
"stylelint-config-standard": "^40.0.0",
|
|
38
38
|
"stylelint-config-standard-scss": "^17.0.0",
|
|
39
|
-
"stylelint-define-config": "^17.
|
|
39
|
+
"stylelint-define-config": "^17.2.0",
|
|
40
40
|
"stylelint-order": "^7.0.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"stylelint": "^17.
|
|
43
|
+
"stylelint": "^17.2.0"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public",
|