@dword-design/stylelint-config 3.0.3 → 4.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.
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/dist/index.js +4 -1
- package/package.json +13 -12
- package/dist/cjs-fallback.cjs +0 -4
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -102,5 +102,5 @@ Thanks a lot for your support! ❤️
|
|
|
102
102
|
|
|
103
103
|
## License
|
|
104
104
|
|
|
105
|
-
[MIT License](https://opensource.org/
|
|
105
|
+
[MIT License](https://opensource.org/license/mit/) © [Sebastian Landwehr](https://sebastianlandwehr.com)
|
|
106
106
|
<!-- /LICENSE -->
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import packageName from 'depcheck-package-name';
|
|
2
|
+
import stylelintUseNesting from 'stylelint-use-nesting';
|
|
2
3
|
export default {
|
|
3
4
|
extends: [packageName`stylelint-config-standard-scss`, `${packageName`stylelint-config-hudochenkov`}/order`, `${packageName`stylelint-prettier`}/recommended`, `${packageName`stylelint-config-recommended-vue`}/scss`],
|
|
4
|
-
plugins: [
|
|
5
|
+
plugins: [stylelintUseNesting,
|
|
6
|
+
// "CommonJS plugins are deprecated" error when listing it as a string
|
|
7
|
+
packageName`stylelint-declaration-block-no-ignored-properties`],
|
|
5
8
|
rules: {
|
|
6
9
|
'csstools/use-nesting': ['always', {
|
|
7
10
|
except: /&:(hover|focus)/
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dword-design/stylelint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"repository": "dword-design/stylelint-config",
|
|
5
5
|
"funding": "https://github.com/sponsors/dword-design",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Sebastian Landwehr <info@sebastianlandwehr.com>",
|
|
8
8
|
"type": "module",
|
|
9
|
-
"
|
|
9
|
+
"exports": "./dist/index.js",
|
|
10
|
+
"main": "dist/index.js",
|
|
10
11
|
"files": [
|
|
11
12
|
"dist"
|
|
12
13
|
],
|
|
@@ -22,27 +23,27 @@
|
|
|
22
23
|
},
|
|
23
24
|
"dependencies": {
|
|
24
25
|
"depcheck-package-name": "^3.0.0",
|
|
25
|
-
"jiti": "^1.18.2",
|
|
26
26
|
"postcss-html": "^1.5.0",
|
|
27
|
-
"stylelint-config-hudochenkov": "^
|
|
27
|
+
"stylelint-config-hudochenkov": "^11.0.0",
|
|
28
28
|
"stylelint-config-recommended-vue": "^1.4.0",
|
|
29
|
-
"stylelint-config-standard-scss": "^
|
|
29
|
+
"stylelint-config-standard-scss": "^14.0.0",
|
|
30
30
|
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
|
|
31
31
|
"stylelint-order": "^6.0.3",
|
|
32
|
-
"stylelint-prettier": "^
|
|
33
|
-
"stylelint-use-nesting": "^
|
|
32
|
+
"stylelint-prettier": "^5.0.0",
|
|
33
|
+
"stylelint-use-nesting": "^6.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@dword-design/base": "^
|
|
37
|
-
"@dword-design/functions": "^
|
|
36
|
+
"@dword-design/base": "^11.0.3",
|
|
37
|
+
"@dword-design/functions": "^6.0.1",
|
|
38
38
|
"@dword-design/tester": "^2.0.19",
|
|
39
|
-
"execa": "^
|
|
39
|
+
"execa": "^9.5.2",
|
|
40
40
|
"fs-extra": "^11.1.1",
|
|
41
|
-
"stylelint": "^
|
|
41
|
+
"stylelint": "^16.2.1",
|
|
42
42
|
"with-local-tmp-dir": "^5.0.0"
|
|
43
43
|
},
|
|
44
|
+
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
|
|
44
45
|
"engines": {
|
|
45
|
-
"node": ">=
|
|
46
|
+
"node": ">=18"
|
|
46
47
|
},
|
|
47
48
|
"publishConfig": {
|
|
48
49
|
"access": "public"
|
package/dist/cjs-fallback.cjs
DELETED