@settlemint/sdk-cli 1.1.1-main96df3535 → 1.1.1-pr1017206f
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/cli.js +5 -8
- package/dist/cli.js.map +3 -3
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -267029,7 +267029,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
|
267029
267029
|
var package_default = {
|
|
267030
267030
|
name: "@settlemint/sdk-cli",
|
|
267031
267031
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
|
267032
|
-
version: "1.1.1-
|
|
267032
|
+
version: "1.1.1-pr1017206f",
|
|
267033
267033
|
type: "module",
|
|
267034
267034
|
private: false,
|
|
267035
267035
|
license: "FSL-1.1-MIT",
|
|
@@ -267077,8 +267077,8 @@ var package_default = {
|
|
|
267077
267077
|
"@inquirer/input": "4.1.4",
|
|
267078
267078
|
"@inquirer/password": "4.0.7",
|
|
267079
267079
|
"@inquirer/select": "4.0.7",
|
|
267080
|
-
"@settlemint/sdk-js": "1.1.1-
|
|
267081
|
-
"@settlemint/sdk-utils": "1.1.1-
|
|
267080
|
+
"@settlemint/sdk-js": "1.1.1-pr1017206f",
|
|
267081
|
+
"@settlemint/sdk-utils": "1.1.1-pr1017206f",
|
|
267082
267082
|
"@types/node": "22.12.0",
|
|
267083
267083
|
"@types/semver": "7.5.8",
|
|
267084
267084
|
"@types/which": "3.0.4",
|
|
@@ -277898,10 +277898,7 @@ function addHooksToCommand(cmd2, rootCmd, argv) {
|
|
|
277898
277898
|
async function onError(sdkcli, argv, error5) {
|
|
277899
277899
|
const errorsToIgnore = [ExitPromptError, AbortPromptError, ValidationError, CancelPromptError];
|
|
277900
277900
|
if (errorsToIgnore.some((errorToIgnore) => error5 instanceof errorToIgnore)) {
|
|
277901
|
-
|
|
277902
|
-
}
|
|
277903
|
-
if (error5 instanceof CommanderError && (error5.exitCode === 0 || error5.code === "commander.help")) {
|
|
277904
|
-
process.exit(error5.exitCode);
|
|
277901
|
+
return;
|
|
277905
277902
|
}
|
|
277906
277903
|
if (!(error5 instanceof CancelError2 || error5 instanceof SpinnerError)) {
|
|
277907
277904
|
const errorMessage2 = maskTokens2(error5.message);
|
|
@@ -277948,4 +277945,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
|
277948
277945
|
// src/cli.ts
|
|
277949
277946
|
sdkCliCommand();
|
|
277950
277947
|
|
|
277951
|
-
//# debugId=
|
|
277948
|
+
//# debugId=65BC4814B2F01D6B64756E2164756E21
|