File tree Expand file tree Collapse file tree 3 files changed +1
-28
lines changed Expand file tree Collapse file tree 3 files changed +1
-28
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export default tseslint.config(
61
61
'packages/rules/dist/*' ,
62
62
'packages/i18n/dist/*' ,
63
63
'packages/nuxt/dist/*' ,
64
+ 'docs/dist/*' ,
64
65
] ,
65
66
} ,
66
67
) ;
Original file line number Diff line number Diff line change @@ -100,26 +100,10 @@ async function build(pkg) {
100
100
await build ( 'rules' ) ;
101
101
}
102
102
103
- if ( arg === 'zod' || ! arg ) {
104
- await build ( 'zod' ) ;
105
- }
106
-
107
- if ( arg === 'yup' || ! arg ) {
108
- await build ( 'yup' ) ;
109
- }
110
-
111
- if ( arg === 'valibot' || ! arg ) {
112
- await build ( 'valibot' ) ;
113
- }
114
-
115
103
if ( arg === 'nuxt' || ! arg ) {
116
104
await build ( 'nuxt' ) ;
117
105
}
118
106
119
- if ( arg === 'joi' || ! arg ) {
120
- await build ( 'joi' ) ;
121
- }
122
-
123
107
if ( arg === 'i18n' || ! arg ) {
124
108
await build ( 'i18n' ) ;
125
109
await buildLocales ( ) ;
Original file line number Diff line number Diff line change @@ -13,20 +13,12 @@ const formatNameMap = {
13
13
'vee-validate' : 'VeeValidate' ,
14
14
rules : 'VeeValidateRules' ,
15
15
i18n : 'VeeValidateI18n' ,
16
- zod : 'VeeValidateZod' ,
17
- yup : 'VeeValidateYup' ,
18
- valibot : 'VeeValidateValibot' ,
19
- joi : 'VeeValidateJoi' ,
20
16
} ;
21
17
22
18
const pkgNameMap = {
23
19
'vee-validate' : 'vee-validate' ,
24
20
rules : 'vee-validate-rules' ,
25
21
i18n : 'vee-validate-i18n' ,
26
- zod : 'vee-validate-zod' ,
27
- yup : 'vee-validate-yup' ,
28
- valibot : 'vee-validate-valibot' ,
29
- joi : 'vee-validate-joi' ,
30
22
} ;
31
23
32
24
const formatExt = {
@@ -58,11 +50,7 @@ async function createConfig(pkg, format) {
58
50
'vue' ,
59
51
isEsm ? '@vue/devtools-api' : undefined ,
60
52
isEsm ? '@vue/devtools-kit' : undefined ,
61
- 'zod' ,
62
- 'yup' ,
63
53
'vee-validate' ,
64
- 'valibot' ,
65
- 'joi' ,
66
54
] . filter ( Boolean ) ,
67
55
plugins : [
68
56
replace ( {
You can’t perform that action at this time.
0 commit comments