@settlemint/sdk-cli 1.1.1-pr1017206f → 1.1.1-pr23b414c2
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 +8 -5
- 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-pr23b414c2",
|
|
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-pr23b414c2",
|
|
267081
|
+
"@settlemint/sdk-utils": "1.1.1-pr23b414c2",
|
|
267082
267082
|
"@types/node": "22.12.0",
|
|
267083
267083
|
"@types/semver": "7.5.8",
|
|
267084
267084
|
"@types/which": "3.0.4",
|
|
@@ -277898,7 +277898,10 @@ 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
|
-
|
|
277901
|
+
process.exit(0);
|
|
277902
|
+
}
|
|
277903
|
+
if (error5 instanceof CommanderError && (error5.exitCode === 0 || error5.code === "commander.help")) {
|
|
277904
|
+
process.exit(error5.exitCode);
|
|
277902
277905
|
}
|
|
277903
277906
|
if (!(error5 instanceof CancelError2 || error5 instanceof SpinnerError)) {
|
|
277904
277907
|
const errorMessage2 = maskTokens2(error5.message);
|
|
@@ -277945,4 +277948,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
|
277945
277948
|
// src/cli.ts
|
|
277946
277949
|
sdkCliCommand();
|
|
277947
277950
|
|
|
277948
|
-
//# debugId=
|
|
277951
|
+
//# debugId=4DB3DD3F724409EB64756E2164756E21
|