mirror of
https://github.com/supabase/supabase.git
synced 2026-09-07 02:20:52 +08:00
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES ## What kind of change does this PR introduce? Chore / dependency tooling update. ## What is the current behavior? The repo is pinned to pnpm 10.24.0. Closes https://linear.app/supabase/issue/FE-3673/migrate-the-repo-to-use-pnpm-v11. ## What is the new behavior? The repo is pinned to pnpm 11.13.1, pnpm v11 workspace settings are migrated to `allowBuilds`, and the Studio Dockerfile installs pnpm 11.13.1. ## Additional context Validated with `CI=true mise exec node@22 -- pnpm install --frozen-lockfile`, `mise exec node@22 -- pnpm run typecheck`, and `mise exec node@22 -- pnpm run lint`; full Prettier check still fails on existing generated docs/router files outside this migration. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated tooling requirements (pnpm **11.13.1**, Node **>=22.13**) and aligned container build tooling accordingly. * Adjusted package manager behavior (scoped registry override, update notifications disabled) and workspace build/engine validation settings. * **Maintenance** * Updated `clean` scripts across apps/packages to remove only build/cache artifacts (no longer delete installed dependencies). * Reduced Turbo `clean` task output to **errors-only** for cleaner logs. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
36 lines
982 B
JSON
36 lines
982 B
JSON
{
|
|
"name": "lite-studio",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "react-router build",
|
|
"dev": "react-router dev",
|
|
"start": "react-router-serve ./build/server/index.js",
|
|
"typecheck": "react-router typegen && tsc",
|
|
"clean": "rimraf build .react-router .turbo tsconfig.tsbuildinfo"
|
|
},
|
|
"dependencies": {
|
|
"@react-router/fs-routes": "^7.17.0",
|
|
"@react-router/node": "^7.17.0",
|
|
"@react-router/serve": "^7.17.0",
|
|
"isbot": "^5.1.36",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:",
|
|
"react-router": "^7.17.0",
|
|
"ui": "workspace:*",
|
|
"ui-patterns": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@react-router/dev": "^7.17.0",
|
|
"@tailwindcss/vite": "4.2.4",
|
|
"@types/node": "^22",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"config": "workspace:*",
|
|
"tailwindcss": "catalog:",
|
|
"tsconfig": "workspace:*",
|
|
"vite": "^7.3.2",
|
|
"vite-tsconfig-paths": "catalog:"
|
|
}
|
|
}
|