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.
- package/dist/index.mjs +6 -4
- 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.
|
|
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
|
-
|
|
37395
|
-
|
|
37396
|
-
|
|
37394
|
+
async function main() {
|
|
37395
|
+
await checkForUpdates(CLI_VERSION);
|
|
37396
|
+
program.parse();
|
|
37397
|
+
}
|
|
37398
|
+
main().catch(() => {
|
|
37397
37399
|
});
|