Skip to content

Commit

Permalink
update supabase cli version
Browse files Browse the repository at this point in the history
  • Loading branch information
xavimondev committed Apr 22, 2024
1 parent 3d5ee2a commit 4825bb9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# vdbs

## 0.0.5

### Patch Changes

- patch supabase version cli

## 0.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vdbs",
"version": "0.0.4",
"version": "0.0.5",
"description": "Generate migrations from database diagrams",
"license": "MIT",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const add = new Command()
const spinner = ora(`Initializing Supabase project...`).start();
// 1. Initialize supabase project
const executeCommand = await listCommands(cwd);
await execa(executeCommand, ["supabase", "init"], {
await execa(executeCommand, ["supabase@1.162.4", "init"], {
cwd: pickedPath === "supabase" ? cwd : pickedPath,
});
spinner.succeed();
Expand Down

0 comments on commit 4825bb9

Please sign in to comment.