-
-
Notifications
You must be signed in to change notification settings - Fork 91
fix: install @better-auth/cli as a dev dependency
#950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
aa681dd
944a006
c0a718c
950f99f
ef61abd
7580682
ed7cb24
03fc947
ff156ee
d5d7c93
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "sv": patch | ||
| --- | ||
|
|
||
| fix: install `@better-auth/cli` as a dev dependency |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -144,7 +144,7 @@ export function buildAndLogArgs( | |
| args: string[], | ||
| lastArgs: string[] = [] | ||
| ): string { | ||
| const allArgs = ['sv', command, ...args]; | ||
| const allArgs = [`sv@${pkg.version}`, command, ...args]; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hummm, not sure why we do this in this PR?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was just tapping away and ended up grouping a few things together. I think its necessary for reproducibility.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, let's keep it in 👍 |
||
|
|
||
| // Handle install option | ||
| if (agent === null || agent === undefined) allArgs.push('--no-install'); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.