@pubinfo-pr/config 0.197.1 → 0.203.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/dist/eslint.mjs +1 -4
- package/dist/unocss.mjs +1 -1
- package/package.json +13 -13
- package/src/eslint/factory.ts +0 -1
package/dist/eslint.mjs
CHANGED
|
@@ -109,10 +109,7 @@ async function vue() {
|
|
|
109
109
|
//#endregion
|
|
110
110
|
//#region src/eslint/factory.ts
|
|
111
111
|
async function pubinfo(...userConfigs) {
|
|
112
|
-
return antfu({
|
|
113
|
-
unocss: false,
|
|
114
|
-
pnpm: false
|
|
115
|
-
}, vue(), stylistic(), ignores(), ...userConfigs);
|
|
112
|
+
return antfu({ unocss: false }, vue(), stylistic(), ignores(), ...userConfigs);
|
|
116
113
|
}
|
|
117
114
|
|
|
118
115
|
//#endregion
|
package/dist/unocss.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const suffix = [[
|
|
|
11
11
|
], ["::backdrop"]];
|
|
12
12
|
function createCssVar(key, themeName) {
|
|
13
13
|
function createSuffixScheme(preSuffix, suffixMap = suffix) {
|
|
14
|
-
return suffixMap.reduce((acc, suffix) => acc.concat(suffix.map((s) => `${preSuffix}${s}`).join(",")), []);
|
|
14
|
+
return suffixMap.reduce((acc, suffix$1) => acc.concat(suffix$1.map((s) => `${preSuffix}${s}`).join(",")), []);
|
|
15
15
|
}
|
|
16
16
|
return {
|
|
17
17
|
light(key$1) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pubinfo-pr/config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.203.1",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.mts",
|
|
@@ -35,25 +35,25 @@
|
|
|
35
35
|
"node": "^20.19.0 || >=22.12.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"eslint": "^9.
|
|
39
|
-
"stylelint": "^
|
|
38
|
+
"eslint": "^9.30.1",
|
|
39
|
+
"stylelint": "^16.21.0",
|
|
40
40
|
"unocss": ">=65.5.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@antfu/eslint-config": "^
|
|
44
|
-
"@stylistic/stylelint-plugin": "^
|
|
43
|
+
"@antfu/eslint-config": "^4.16.2",
|
|
44
|
+
"@stylistic/stylelint-plugin": "^3.1.3",
|
|
45
45
|
"@unocss/core": "65.5.0",
|
|
46
|
-
"postcss-html": "^1.8.
|
|
47
|
-
"postcss-preset-env": "^
|
|
48
|
-
"stylelint-config-recess-order": "^7.
|
|
49
|
-
"stylelint-config-standard-less": "^
|
|
50
|
-
"stylelint-config-standard-scss": "^
|
|
46
|
+
"postcss-html": "^1.8.0",
|
|
47
|
+
"postcss-preset-env": "^10.5.0",
|
|
48
|
+
"stylelint-config-recess-order": "^7.1.0",
|
|
49
|
+
"stylelint-config-standard-less": "^3.0.1",
|
|
50
|
+
"stylelint-config-standard-scss": "^15.0.1",
|
|
51
51
|
"stylelint-config-standard-vue": "^1.0.0",
|
|
52
|
-
"stylelint-scss": "^
|
|
52
|
+
"stylelint-scss": "^6.12.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"eslint": "^9.
|
|
56
|
-
"stylelint": "^
|
|
55
|
+
"eslint": "^9.30.1",
|
|
56
|
+
"stylelint": "^16.21.0",
|
|
57
57
|
"unocss": "65.5.0"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|