@vibeversion/cli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -85,7 +85,7 @@ function saveAuthConfig(config) {
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
// src/commands/login.ts
|
|
88
|
-
var DEFAULT_API_URL = "https://vibeversion.
|
|
88
|
+
var DEFAULT_API_URL = "https://vibeversion.app";
|
|
89
89
|
async function loginCommand() {
|
|
90
90
|
console.log(chalk.bold("\nLog in to Vibeversion\n"));
|
|
91
91
|
const apiUrl = process.env.VV_API_URL || await input({
|
|
@@ -356,7 +356,7 @@ async function saveCommand() {
|
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
// src/index.ts
|
|
359
|
-
program.name("vv").description("Save and version your projects with Vibeversion").version("0.1.
|
|
359
|
+
program.name("vv").description("Save and version your projects with Vibeversion").version("0.1.1");
|
|
360
360
|
program.command("login").description("Log in to your Vibeversion account").action(loginCommand);
|
|
361
361
|
program.command("init").description("Link this folder to a Vibeversion project").action(initCommand);
|
|
362
362
|
program.command("save").description("Save the current state of your project").action(saveCommand);
|