replicas-cli 0.2.400 → 0.2.402

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.
Files changed (2) hide show
  1. package/dist/index.mjs +6 -4
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -24394,7 +24394,7 @@ function formatTurnElapsed(ms) {
24394
24394
  }
24395
24395
 
24396
24396
  // ../shared/src/cli-version.ts
24397
- var CLI_VERSION = "0.2.400";
24397
+ var CLI_VERSION = "0.2.402";
24398
24398
 
24399
24399
  // ../shared/src/version.ts
24400
24400
  function compareVersions(v1, v2) {
@@ -37391,7 +37391,9 @@ if (isAgentMode()) {
37391
37391
  cmds.length = 0;
37392
37392
  cmds.push(...kept);
37393
37393
  }
37394
- var versionCheckPromise = checkForUpdates(CLI_VERSION);
37395
- program.parse();
37396
- versionCheckPromise.catch(() => {
37394
+ async function main() {
37395
+ await checkForUpdates(CLI_VERSION);
37396
+ program.parse();
37397
+ }
37398
+ main().catch(() => {
37397
37399
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.400",
3
+ "version": "0.2.402",
4
4
  "description": "CLI for managing Replicas workspaces - SSH into cloud dev environments with automatic port forwarding",
5
5
  "main": "dist/index.mjs",
6
6
  "bin": {