@seayoo-web/scripts 2.6.1 → 2.6.3

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/dist/index.js CHANGED
@@ -380,6 +380,7 @@ const stylelintConfig = {
380
380
  ],
381
381
  rules: {
382
382
  "selector-class-pattern": /^[a-z\d-_]+$/,
383
+ "media-feature-range-notation": "prefix",
383
384
  "selector-pseudo-class-no-unknown": [
384
385
  true,
385
386
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/scripts",
3
- "version": "2.6.1",
3
+ "version": "2.6.3",
4
4
  "description": "scripts for seayoo web repos",
5
5
  "type": "module",
6
6
  "source": "index.ts",
@@ -51,7 +51,7 @@
51
51
  "postcss-html": "^1.8.0",
52
52
  "rollup-plugin-visualizer": "^6.0.3",
53
53
  "terser": "^5.43.1",
54
- "vite-plugin-stylelint": "^6.0.1",
54
+ "vite-plugin-stylelint": "^6.0.2",
55
55
  "@seayoo-web/finder": "^2.1.1"
56
56
  },
57
57
  "devDependencies": {
@@ -60,16 +60,17 @@
60
60
  "@types/node": "^22.14.1",
61
61
  "@typescript-eslint/utils": "^8.35.1",
62
62
  "eslint": "^9.30.1",
63
- "stylelint": "^16.21.1",
64
- "stylelint-config-recess-order": "^6.1.0",
65
- "stylelint-config-standard": "^37.0.0",
66
- "@seayoo-web/tsconfig": "^1.0.4"
63
+ "stylelint": "^16.22.0",
64
+ "stylelint-config-recess-order": "^7.1.0",
65
+ "stylelint-config-standard": "^38.0.0",
66
+ "stylelint-order": "^7.0.0",
67
+ "@seayoo-web/tsconfig": "^1.0.5"
67
68
  },
68
69
  "optionalDependencies": {
69
- "eslint": "^9.30.1",
70
- "stylelint": "^16.21.1",
71
- "stylelint-config-recess-order": "^6.1.0",
72
- "stylelint-config-standard": "^37.0.0"
70
+ "eslint": ">=9.30.1",
71
+ "stylelint": ">=16.22.0",
72
+ "stylelint-config-recess-order": ">=7.1.0",
73
+ "stylelint-config-standard": ">=38.0.0"
73
74
  },
74
75
  "scripts": {
75
76
  "build": "vite build && tsc --emitDeclarationOnly",
@@ -9,6 +9,7 @@ export declare const stylelintConfig: {
9
9
  }[];
10
10
  rules: {
11
11
  "selector-class-pattern": RegExp;
12
+ "media-feature-range-notation": string;
12
13
  "selector-pseudo-class-no-unknown": (boolean | {
13
14
  ignorePseudoClasses: string[];
14
15
  })[];