mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
fix(deps): add missing zod dependency to Calendar and Chat web apps for CI
Fixes CI/CD frozen-lockfile failure. The pnpm-lock.yaml had zod entries for Calendar and Chat web apps, but their package.json files were missing the dependency. This mismatch caused CI builds to fail. Added zod@^3.25.76 to: - apps/calendar/apps/web/package.json - apps/chat/apps/web/package.json 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
22af71883e
commit
5c594a4b23
3 changed files with 8 additions and 6 deletions
|
|
@ -54,7 +54,8 @@
|
|||
"lucide-svelte": "^0.559.0",
|
||||
"suncalc": "^1.9.0",
|
||||
"svelte-dnd-action": "^0.9.68",
|
||||
"svelte-i18n": "^4.0.1"
|
||||
"svelte-i18n": "^4.0.1",
|
||||
"zod": "^3.25.76"
|
||||
},
|
||||
"type": "module"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@
|
|||
"@manacore/shared-ui": "workspace:*",
|
||||
"@manacore/shared-utils": "workspace:*",
|
||||
"marked": "^17.0.0",
|
||||
"svelte-i18n": "^4.0.1"
|
||||
"svelte-i18n": "^4.0.1",
|
||||
"zod": "^3.25.76"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue