Skip to content

Commit d771f54

Browse files
committed
fix: pin zod version to 3.25.76 in registry deps to ensure vee-validate/zod works correctly
resolve #1581
1 parent 493bcba commit d771f54

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/v4/registry/registry-ui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ export const ui: Registry["items"] = [
935935
"reka-ui",
936936
"vee-validate",
937937
"@vee-validate/zod",
938-
"zod",
938+
"zod@3.25.76",
939939
],
940940
registryDependencies: [
941941
"label",

apps/v4/scripts/crawl-content.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ const DEPENDENCIES = new Map<string, string[]>([
1717
['@tanstack/vue-table', []],
1818
['@unovis/vue', ['@unovis/ts']],
1919
['embla-carousel-vue', []],
20-
['vee-validate', ['@vee-validate/zod', 'zod']],
20+
// TODO: remove version tag after vee-validate v5
21+
['vee-validate', ['@vee-validate/zod', 'zod@3.25.76']],
2122
['vue-input-otp', []],
2223
])
2324

0 commit comments

Comments
 (0)