@monolayer/sdk 1.2.2 → 1.2.3
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/bin/cli.js +2 -2
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -21535,7 +21535,7 @@ A new version of @monolayer/sdk is available. Current version: ${installedVersio
|
|
|
21535
21535
|
}
|
|
21536
21536
|
|
|
21537
21537
|
// src/bin/cli.ts
|
|
21538
|
-
var CURRENT_VERSION = "1.2.
|
|
21538
|
+
var CURRENT_VERSION = "1.2.3";
|
|
21539
21539
|
function isCommanderError(error) {
|
|
21540
21540
|
return error instanceof CommanderError;
|
|
21541
21541
|
}
|
|
@@ -21543,7 +21543,7 @@ async function main2() {
|
|
|
21543
21543
|
await checkVersion(CURRENT_VERSION);
|
|
21544
21544
|
process.env.TESTCONTAINERS_RYUK_DISABLED = "true";
|
|
21545
21545
|
const program2 = new Command();
|
|
21546
|
-
program2.name("
|
|
21546
|
+
program2.name("@monolayer/sdk").version("1.0.0");
|
|
21547
21547
|
start(program2);
|
|
21548
21548
|
stop(program2);
|
|
21549
21549
|
status(program2);
|
package/package.json
CHANGED