Skip to content

Commit 176c53f

Browse files
authored
fix(deps): move zod from dev to prod catalog (#230)
zod was incorrectly placed in the dev catalog while being used as a production dependency. This change: - Moves zod definition from catalogs.dev to catalogs.prod in pnpm-workspace.yaml - Updates package.json to reference catalog:prod instead of catalog:dev This ensures the catalog classification accurately reflects the dependency's actual usage in production code.
1 parent 407fe98 commit 176c53f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@modelcontextprotocol/sdk": "catalog:prod",
3939
"@orama/orama": "catalog:prod",
4040
"defu": "catalog:prod",
41-
"zod": "catalog:dev"
41+
"zod": "catalog:prod"
4242
},
4343
"devDependencies": {
4444
"@ai-sdk/provider": "catalog:dev",

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ catalogs:
2727
typescript: ^5.8.3
2828
unplugin-unused: ^0.5.4
2929
vitest: ^4.0.15
30-
zod: ^4.1.13
3130
examples:
3231
'@anthropic-ai/claude-agent-sdk': ^0.1.67
3332
'@tanstack/ai': ^0.0.3
@@ -40,6 +39,7 @@ catalogs:
4039
'@modelcontextprotocol/sdk': ^1.24.3
4140
'@orama/orama': ^3.1.11
4241
defu: ^6.1.4
42+
zod: ^4.1.13
4343

4444
enablePrePostScripts: true
4545

0 commit comments

Comments
 (0)