Skip to content

Commit abd8cbb

Browse files
jujunjun110claude
andcommittedJan 1, 2026·
chore: supabase CLI をバージョン固定
pnpm dlx から devDependencies への変更により、チーム全体で同じ supabase CLI バージョンを使用できるようになります。 変更内容: - supabase を devDependencies に追加 (^2.70.5) - pnpm-workspace.yaml に onlyBuiltDependencies を追加 - package.json の scripts から pnpm dlx を削除 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b8aab7f commit abd8cbb

File tree

3 files changed

+151
-10
lines changed

3 files changed

+151
-10
lines changed
 

‎package.json‎

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
"db:studio": "prisma studio",
4747
"postinstall": "prisma generate && npx simple-git-hooks",
4848
"// Supabase": "==========================================",
49-
"supabase:init": "pnpm dlx supabase init",
50-
"supabase:start": "pnpm dlx supabase start",
51-
"supabase:stop": "pnpm dlx supabase stop",
52-
"supabase:status": "pnpm dlx supabase status",
53-
"supabase:reset": "pnpm dlx supabase db reset",
54-
"supabase:types": "pnpm dlx supabase gen types typescript --local > supabase/types.gen.ts",
49+
"supabase:init": "supabase init",
50+
"supabase:start": "supabase start",
51+
"supabase:stop": "supabase stop",
52+
"supabase:status": "supabase status",
53+
"supabase:reset": "supabase db reset",
54+
"supabase:types": "supabase gen types typescript --local > supabase/types.gen.ts",
5555
"// Utilities": "=========================================",
5656
"clean": "pnpm supabase:stop && rm -rf node_modules */node_modules",
5757
"fresh": "pnpm clean && pnpm install && pnpm dev:setup",
@@ -71,6 +71,7 @@
7171
"lint-staged": "^15.5.2",
7272
"prisma": "^6.14.0",
7373
"simple-git-hooks": "^2.13.1",
74+
"supabase": "^2.70.5",
7475
"tsx": "^4.21.0",
7576
"typescript": "^5"
7677
},

‎pnpm-lock.yaml‎

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

‎pnpm-workspace.yaml‎

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
packages:
2-
- 'packages/*'
3-
- 'admin'
4-
- 'webapp'
1+
packages:
2+
- 'packages/*'
3+
- 'admin'
4+
- 'webapp'
5+
6+
onlyBuiltDependencies:
7+
- supabase

0 commit comments

Comments
 (0)
Please sign in to comment.