replicas-cli 0.2.32 → 0.2.33
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2076,9 +2076,9 @@ async function checkForUpdates(currentVersion) {
|
|
|
2076
2076
|
const data = await response.json();
|
|
2077
2077
|
const latestVersion = data.version;
|
|
2078
2078
|
if (compareVersions(latestVersion, currentVersion) > 0) {
|
|
2079
|
-
console.error(import_chalk14.default.
|
|
2079
|
+
console.error(import_chalk14.default.yellow(`
|
|
2080
2080
|
Update available: ${currentVersion} \u2192 ${latestVersion}`));
|
|
2081
|
-
console.error(import_chalk14.default.
|
|
2081
|
+
console.error(import_chalk14.default.cyan(`Run: npm i -g replicas-cli@latest
|
|
2082
2082
|
`));
|
|
2083
2083
|
}
|
|
2084
2084
|
} catch {
|
|
@@ -2549,7 +2549,7 @@ Repositories (${response.repositories.length}):
|
|
|
2549
2549
|
}
|
|
2550
2550
|
|
|
2551
2551
|
// src/index.ts
|
|
2552
|
-
var CLI_VERSION = "0.2.
|
|
2552
|
+
var CLI_VERSION = "0.2.33";
|
|
2553
2553
|
var program = new import_commander.Command();
|
|
2554
2554
|
program.name("replicas").description("CLI for managing Replicas workspaces").version(CLI_VERSION);
|
|
2555
2555
|
program.command("login").description("Authenticate with your Replicas account").action(async () => {
|