Skip to content

Commit a023c70

Browse files
committed
chore: bump joi pkg
1 parent 0983d54 commit a023c70

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.changeset/config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"@vee-validate/zod",
1212
"@vee-validate/yup",
1313
"@vee-validate/valibot",
14-
"@vee-validate/nuxt"
14+
"@vee-validate/nuxt",
15+
"@vee-validate/joi"
1516
]
1617
],
1718
"linked": [],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Form Validation for Vue.js",
55
"author": "Abdelrahman Awad <[email protected]>",
66
"license": "MIT",
7-
"packageManager": "pnpm@8.6.10",
7+
"packageManager": "pnpm@8.7.5",
88
"homepage": "https://vee-validate.logaretm.com",
99
"repository": "https://github.com/logaretm/vee-validate",
1010
"scripts": {

packages/joi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vee-validate/joi",
3-
"version": "4.11.3",
3+
"version": "4.11.6",
44
"description": "vee-validate integration with joi schema validation",
55
"author": "Abdelrahman Awad <[email protected]>",
66
"license": "MIT",

scripts/build.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ async function build(pkg) {
114114
await build('nuxt');
115115
}
116116

117+
if (arg === 'joi' || !arg) {
118+
await build('joi');
119+
}
120+
117121
if (arg === 'i18n' || !arg) {
118122
await build('i18n');
119123
await buildLocales();

scripts/config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const formatNameMap = {
1616
zod: 'VeeValidateZod',
1717
yup: 'VeeValidateYup',
1818
valibot: 'VeeValidateValibot',
19+
joi: 'VeeValidateJoi',
1920
};
2021

2122
const pkgNameMap = {
@@ -25,6 +26,7 @@ const pkgNameMap = {
2526
zod: 'vee-validate-zod',
2627
yup: 'vee-validate-yup',
2728
valibot: 'vee-validate-valibot',
29+
joi: 'vee-validate-joi',
2830
};
2931

3032
const formatMap = {
@@ -51,7 +53,7 @@ async function createConfig(pkg, format) {
5153
const config = {
5254
input: {
5355
input: slashes(path.resolve(__dirname, `../packages/${pkg}/src/index.ts`)),
54-
external: ['vue', isEsm ? '@vue/devtools-api' : undefined, 'zod', 'yup', 'vee-validate', 'valibot'].filter(
56+
external: ['vue', isEsm ? '@vue/devtools-api' : undefined, 'zod', 'yup', 'vee-validate', 'valibot', 'joi'].filter(
5557
Boolean,
5658
),
5759
plugins: [

0 commit comments

Comments
 (0)