@dlzn-ui/stylelint-config 1.53.0 → 1.55.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 (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +7 -3
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ - `postcss-html` 被 `stylelint-config-recommended-vue` 依赖
2
+ - `postcss-markdown` 用于 stylelint 格式化 markdown 中的 css 代码块
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@dlzn-ui/stylelint-config",
3
3
  "type": "module",
4
+ "version": "1.55.0",
4
5
  "license": "MIT",
5
6
  "publishConfig": {
6
7
  "access": "public"
@@ -10,14 +11,17 @@
10
11
  "import": "./index.ts"
11
12
  }
12
13
  },
14
+ "peerDependencies": {
15
+ "stylelint": "^17.14.1"
16
+ },
13
17
  "dependencies": {
14
18
  "@stylistic/stylelint-config": "^5.0.0",
15
- "stylelint": "^17.14.1",
19
+ "postcss-html": "^2.0.0",
20
+ "postcss-markdown": "^2.0.0",
16
21
  "stylelint-config-recess-order": "^7.7.0",
17
22
  "stylelint-config-recommended-vue": "^2.0.0",
18
23
  "stylelint-config-standard": "^40.0.0",
19
24
  "stylelint-order": "^8.1.1",
20
25
  "stylelint-use-nesting": "^6.0.2"
21
- },
22
- "version": "1.53.0"
26
+ }
23
27
  }