@seayoo-web/scripts 3.1.9 → 3.1.11
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 +6 -0
- package/package.json +12 -12
- package/types/src/stylelint.d.ts +3 -0
package/dist/index.js
CHANGED
|
@@ -389,6 +389,12 @@ const stylelintConfig = {
|
|
|
389
389
|
"color-function-notation": "legacy",
|
|
390
390
|
"color-function-alias-notation": "with-alpha",
|
|
391
391
|
"alpha-value-notation": "number",
|
|
392
|
+
"unit-no-unknown": [
|
|
393
|
+
true,
|
|
394
|
+
{
|
|
395
|
+
ignoreUnits: ["rpx"]
|
|
396
|
+
}
|
|
397
|
+
],
|
|
392
398
|
"selector-pseudo-class-no-unknown": [
|
|
393
399
|
true,
|
|
394
400
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seayoo-web/scripts",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.11",
|
|
4
4
|
"description": "scripts for seayoo web repos",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "index.ts",
|
|
@@ -33,33 +33,33 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@sentry/vite-plugin": "^4.
|
|
36
|
+
"@sentry/vite-plugin": "^4.9.1",
|
|
37
37
|
"@vitejs/plugin-legacy": "^7.2.1",
|
|
38
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
38
|
+
"@vitejs/plugin-vue": "^6.0.4",
|
|
39
39
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
40
|
-
"@vue/eslint-config-typescript": "^14.
|
|
40
|
+
"@vue/eslint-config-typescript": "^14.7.0",
|
|
41
41
|
"chokidar": "^4.0.3",
|
|
42
42
|
"colors": "^1.4.0",
|
|
43
43
|
"commander": "^13.1.0",
|
|
44
44
|
"eslint-plugin-import": "^2.32.0",
|
|
45
|
-
"eslint-plugin-vue": "^10.
|
|
45
|
+
"eslint-plugin-vue": "^10.8.0",
|
|
46
46
|
"fs-extra": "^11.3.3",
|
|
47
47
|
"html-minifier-terser": "^7.2.0",
|
|
48
48
|
"inquirer": "^12.11.1",
|
|
49
49
|
"jiti": "^2.6.1",
|
|
50
50
|
"ora": "^8.2.0",
|
|
51
|
-
"postcss-html": "^1.8.
|
|
51
|
+
"postcss-html": "^1.8.1",
|
|
52
52
|
"rollup-plugin-visualizer": "^6.0.5",
|
|
53
53
|
"stylelint-order": "^7.0.1",
|
|
54
|
-
"terser": "^5.
|
|
55
|
-
"vite-plugin-stylelint": "^6.0.
|
|
54
|
+
"terser": "^5.46.0",
|
|
55
|
+
"vite-plugin-stylelint": "^6.0.4",
|
|
56
56
|
"@seayoo-web/finder": "^2.2.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/fs-extra": "^11.0.4",
|
|
60
60
|
"@types/html-minifier-terser": "^7.0.2",
|
|
61
|
-
"@types/node": "^22.19.
|
|
62
|
-
"@typescript-eslint/utils": "^8.
|
|
61
|
+
"@types/node": "^22.19.11",
|
|
62
|
+
"@typescript-eslint/utils": "^8.56.1",
|
|
63
63
|
"eslint": "^9.33.0",
|
|
64
64
|
"stylelint": "^16.23.1",
|
|
65
65
|
"stylelint-config-recess-order": "^7.2.0",
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
"@seayoo-web/tsconfig": "^1.0.6"
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"eslint": "^9.39.
|
|
70
|
+
"eslint": "^9.39.3",
|
|
71
71
|
"stylelint": "^16.26.1",
|
|
72
|
-
"stylelint-config-recess-order": "^7.
|
|
72
|
+
"stylelint-config-recess-order": "^7.6.1",
|
|
73
73
|
"stylelint-config-standard": "^39.0.1"
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|
package/types/src/stylelint.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ export declare const stylelintConfig: {
|
|
|
13
13
|
"color-function-notation": string;
|
|
14
14
|
"color-function-alias-notation": string;
|
|
15
15
|
"alpha-value-notation": string;
|
|
16
|
+
"unit-no-unknown": (boolean | {
|
|
17
|
+
ignoreUnits: string[];
|
|
18
|
+
})[];
|
|
16
19
|
"selector-pseudo-class-no-unknown": (boolean | {
|
|
17
20
|
ignorePseudoClasses: string[];
|
|
18
21
|
})[];
|