@settlemint/sdk-cli 2.2.3-pr09bf4cc8 → 2.2.3-pr19ac75c7
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 +11 -11
- package/dist/cli.js.map +4 -4
- package/package.json +7 -7
package/dist/cli.js
CHANGED
@@ -247575,7 +247575,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
247575
247575
|
var package_default = {
|
247576
247576
|
name: "@settlemint/sdk-cli",
|
247577
247577
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
247578
|
-
version: "2.2.3-
|
247578
|
+
version: "2.2.3-pr19ac75c7",
|
247579
247579
|
type: "module",
|
247580
247580
|
private: false,
|
247581
247581
|
license: "FSL-1.1-MIT",
|
@@ -247620,12 +247620,12 @@ var package_default = {
|
|
247620
247620
|
devDependencies: {
|
247621
247621
|
"@commander-js/extra-typings": "11.1.0",
|
247622
247622
|
commander: "11.1.0",
|
247623
|
-
"@inquirer/confirm": "5.1.
|
247624
|
-
"@inquirer/input": "4.1.
|
247625
|
-
"@inquirer/password": "4.0.
|
247626
|
-
"@inquirer/select": "4.2.
|
247627
|
-
"@settlemint/sdk-js": "2.2.3-
|
247628
|
-
"@settlemint/sdk-utils": "2.2.3-
|
247623
|
+
"@inquirer/confirm": "5.1.9",
|
247624
|
+
"@inquirer/input": "4.1.9",
|
247625
|
+
"@inquirer/password": "4.0.13",
|
247626
|
+
"@inquirer/select": "4.2.0",
|
247627
|
+
"@settlemint/sdk-js": "2.2.3-pr19ac75c7",
|
247628
|
+
"@settlemint/sdk-utils": "2.2.3-pr19ac75c7",
|
247629
247629
|
"@types/node": "22.15.17",
|
247630
247630
|
"@types/semver": "7.7.0",
|
247631
247631
|
"@types/which": "3.0.4",
|
@@ -248727,9 +248727,6 @@ function createPrompt(view) {
|
|
248727
248727
|
cleanups.add(onExit((code, signal2) => {
|
248728
248728
|
reject(new ExitPromptError(`User force closed the prompt with ${code} ${signal2}`));
|
248729
248729
|
}));
|
248730
|
-
const sigint = () => reject(new ExitPromptError(`User force closed the prompt with SIGINT`));
|
248731
|
-
rl.on("SIGINT", sigint);
|
248732
|
-
cleanups.add(() => rl.removeListener("SIGINT", sigint));
|
248733
248730
|
const checkCursorPos = () => screen.checkCursorPos();
|
248734
248731
|
rl.input.on("keypress", checkCursorPos);
|
248735
248732
|
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
@@ -255060,6 +255057,9 @@ function createPrompt2(view) {
|
|
255060
255057
|
cleanups.add(onExit((code2, signal2) => {
|
255061
255058
|
reject(new ExitPromptError2(`User force closed the prompt with ${code2} ${signal2}`));
|
255062
255059
|
}));
|
255060
|
+
const sigint = () => reject(new ExitPromptError2(`User force closed the prompt with SIGINT`));
|
255061
|
+
rl.on("SIGINT", sigint);
|
255062
|
+
cleanups.add(() => rl.removeListener("SIGINT", sigint));
|
255063
255063
|
const checkCursorPos = () => screen.checkCursorPos();
|
255064
255064
|
rl.input.on("keypress", checkCursorPos);
|
255065
255065
|
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
@@ -263396,4 +263396,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
263396
263396
|
// src/cli.ts
|
263397
263397
|
sdkCliCommand();
|
263398
263398
|
|
263399
|
-
//# debugId=
|
263399
|
+
//# debugId=1AA3ACD61A1C91EC64756E2164756E21
|