vue-linters-config 0.3.8 → 0.3.9

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/dist/index.js +4 -2
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -302,7 +302,7 @@ const t = {
302
302
  "5rem"
303
303
  ],
304
304
  "font-weight": ["$font-weight", "300", "400", "500", "700"],
305
- "line-height": ["1", "1.2", "1.3", "1.5", "2"],
305
+ "line-height": ["1", "1.2", "1.3", "1.4", "1.5", "2"],
306
306
  color: ["/^var/", "/^v-bind/", "unset"],
307
307
  "background-color": ["/^var/", "/^v-bind/", "unset"],
308
308
  "border-color": ["/^var/", "/^v-bind/", "unset"]
@@ -314,7 +314,9 @@ const t = {
314
314
  "max-nesting-depth": 4,
315
315
  "media-feature-name-allowed-list": ["max-width", "print"],
316
316
  "media-feature-name-no-vendor-prefix": !0,
317
- "media-feature-name-value-allowed-list": [{ "max-width": ["$mobile", "$tablet", "$notebook", "$desktop"] }],
317
+ "media-feature-name-value-allowed-list": [
318
+ { "max-width": ["640px", "960px", "$mobile", "$tablet", "$notebook", "$desktop"] }
319
+ ],
318
320
  "no-descending-specificity": null,
319
321
  "no-unknown-animations": !0,
320
322
  "number-max-precision": 3,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-linters-config",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "type": "module",
5
5
  "description": "Vue 3 linters config for eslint, prettier, stylelint",
6
6
  "author": "Aleksandr Dergunov <dergunovs@mail.ru>",
@@ -12,10 +12,10 @@
12
12
  "build": "vite build"
13
13
  },
14
14
  "devDependencies": {
15
- "vite": "5.4.8"
15
+ "vite": "5.4.10"
16
16
  },
17
17
  "engines": {
18
- "npm": ">=10.8.2",
19
- "node": ">=22.8.0"
18
+ "npm": ">=10.9.0",
19
+ "node": ">=22.10.0"
20
20
  }
21
21
  }