rattail 1.8.0 → 1.8.2
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/vite-plus/index.d.mts +2 -2
- package/dist/vite-plus/index.mjs +2 -2
- package/package.json +23 -31
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { CreateVueConfigOptions, DummyRule, LintOptions, LintOptionsVue, OxlintConfig, OxlintOverride, fmt, lint } from "@configurajs/vite-plus";
|
|
2
|
-
export { type CreateVueConfigOptions, type DummyRule, type LintOptions, type LintOptionsVue, type OxlintConfig, type OxlintOverride, fmt, lint };
|
|
1
|
+
import { CreateVueConfigOptions, DummyRule, FmtOptions, LintOptions, LintOptionsVue, OxlintConfig, OxlintOverride, StagedConfig, fmt, lint, staged } from "@configurajs/vite-plus";
|
|
2
|
+
export { type CreateVueConfigOptions, type DummyRule, type FmtOptions, type LintOptions, type LintOptionsVue, type OxlintConfig, type OxlintOverride, type StagedConfig, fmt, lint, staged };
|
package/dist/vite-plus/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { fmt, lint } from "@configurajs/vite-plus";
|
|
2
|
-
export { fmt, lint };
|
|
1
|
+
import { fmt, lint, staged } from "@configurajs/vite-plus";
|
|
2
|
+
export { fmt, lint, staged };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rattail",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "A utilities library for front-end developers, lightweight and ts-friendly",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"front-end developers",
|
|
@@ -25,6 +25,25 @@
|
|
|
25
25
|
"main": "dist/index.mjs",
|
|
26
26
|
"module": "dist/index.mjs",
|
|
27
27
|
"types": "dist/index.d.mts",
|
|
28
|
+
"typesVersions": {
|
|
29
|
+
"*": {
|
|
30
|
+
"vite-plus": [
|
|
31
|
+
"dist/vite-plus/index.d.mts"
|
|
32
|
+
],
|
|
33
|
+
"axle": [
|
|
34
|
+
"dist/axle/index.d.mts"
|
|
35
|
+
],
|
|
36
|
+
"axle/use": [
|
|
37
|
+
"dist/axle/use.d.mts"
|
|
38
|
+
],
|
|
39
|
+
"axle/api": [
|
|
40
|
+
"dist/axle/api.d.mts"
|
|
41
|
+
],
|
|
42
|
+
"ruler-factory": [
|
|
43
|
+
"dist/ruler-factory/index.d.mts"
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
28
47
|
"exports": {
|
|
29
48
|
".": {
|
|
30
49
|
"types": "./dist/index.d.mts",
|
|
@@ -51,28 +70,9 @@
|
|
|
51
70
|
"import": "./dist/ruler-factory/index.mjs"
|
|
52
71
|
}
|
|
53
72
|
},
|
|
54
|
-
"typesVersions": {
|
|
55
|
-
"*": {
|
|
56
|
-
"vite-plus": [
|
|
57
|
-
"dist/vite-plus/index.d.mts"
|
|
58
|
-
],
|
|
59
|
-
"axle": [
|
|
60
|
-
"dist/axle/index.d.mts"
|
|
61
|
-
],
|
|
62
|
-
"axle/use": [
|
|
63
|
-
"dist/axle/use.d.mts"
|
|
64
|
-
],
|
|
65
|
-
"axle/api": [
|
|
66
|
-
"dist/axle/api.d.mts"
|
|
67
|
-
],
|
|
68
|
-
"ruler-factory": [
|
|
69
|
-
"dist/ruler-factory/index.d.mts"
|
|
70
|
-
]
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@configurajs/vite-plus": "0.
|
|
75
|
-
"@varlet/axle": "1.0.
|
|
74
|
+
"@configurajs/vite-plus": "0.2.0",
|
|
75
|
+
"@varlet/axle": "1.0.2",
|
|
76
76
|
"js-cookie": "3.0.5",
|
|
77
77
|
"mitt": "3.0.1",
|
|
78
78
|
"ruler-factory": "0.0.14",
|
|
@@ -85,7 +85,6 @@
|
|
|
85
85
|
"jsdom": "^25.0.1",
|
|
86
86
|
"nano-staged": "0.8.0",
|
|
87
87
|
"rimraf": "^6.0.1",
|
|
88
|
-
"simple-git-hooks": "^2.11.1",
|
|
89
88
|
"typescript": "5.3.3",
|
|
90
89
|
"vite": "^8.0.1",
|
|
91
90
|
"vite-plus": "^0.1.16",
|
|
@@ -95,13 +94,6 @@
|
|
|
95
94
|
"pre-commit": "pnpm exec nano-staged --allow-empty",
|
|
96
95
|
"commit-msg": "pnpm exec vr commit-lint -p $1"
|
|
97
96
|
},
|
|
98
|
-
"nano-staged": {
|
|
99
|
-
"*.{md}": "vp fmt --no-error-on-unmatched-pattern",
|
|
100
|
-
"*.{ts}": [
|
|
101
|
-
"vp fmt --no-error-on-unmatched-pattern",
|
|
102
|
-
"vp lint --fix"
|
|
103
|
-
]
|
|
104
|
-
},
|
|
105
97
|
"engines": {
|
|
106
98
|
"pnpm": ">=10.0.0"
|
|
107
99
|
},
|
|
@@ -113,7 +105,7 @@
|
|
|
113
105
|
"docs:dev": "vitepress dev docs",
|
|
114
106
|
"docs:preview": "vitepress preview docs",
|
|
115
107
|
"format": "vp fmt",
|
|
116
|
-
"lint": "vp lint",
|
|
108
|
+
"lint": "vp lint --fix",
|
|
117
109
|
"release": "pnpm build && vr release",
|
|
118
110
|
"test": "vp test run --coverage"
|
|
119
111
|
}
|