- pnpm catalog: centralize version governance for biome, ts, vitest,
zod, semantic-release, react, vite, and testing deps
- biome 1.9.4 → 2.4.13: migrate config (organizeImports → assist,
files.ignore → files.includes, enable tailwindDirectives for @theme)
- zod 3.24.3 → 4.3.6: update error message API to { message: "..." }
and .errors → .issues in all 4 Zod-using files
- vitest 3.2.3 → 4.1.5
- semantic-release 24.x → 25.0.3
- typescript 6.0.3 (ahead of 5.9.x standard; intentional)
- add commitlint 20.x with conventional config
- add husky 9.x with commit-msg and pre-commit hooks
- add .github/actions/setup composite action; update all 3 workflows
- fix: remove pnpm version: 9 from all workflows (reads packageManager)
- fix: node-version 20 → 24 in all 3 workflows
- add Makefile with dev/build/test/lint/typecheck/install targets
29 lines
532 B
YAML
29 lines
532 B
YAML
packages:
|
|
- packages/*
|
|
allowBuilds:
|
|
esbuild: true
|
|
|
|
catalog:
|
|
# Standard tooling
|
|
"@biomejs/biome": "^2.4.0"
|
|
|
|
# Testing
|
|
"@testing-library/jest-dom": "^6.6.3"
|
|
"@testing-library/react": "^16.3.0"
|
|
"@testing-library/user-event": "^14.6.1"
|
|
"@types/react": "^19.2.14"
|
|
"@types/react-dom": "^19.2.3"
|
|
"@vitejs/plugin-react": "^6.0.1"
|
|
jsdom: "^26.1.0"
|
|
|
|
# React
|
|
react: "^19.2.5"
|
|
react-dom: "^19.2.5"
|
|
semantic-release: "^25.0.0"
|
|
typescript: "~6.0.2"
|
|
|
|
# Vite
|
|
vite: "^8.0.10"
|
|
vitest: "^4.0.0"
|
|
zod: "^4.0.0"
|