@settlemint/sdk-cli 2.2.3-main162ccf2f → 2.2.3-main4078055b
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 +12 -9
- package/dist/cli.js.map +3 -3
- package/package.json +8 -8
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-main4078055b",
|
247579
247579
|
type: "module",
|
247580
247580
|
private: false,
|
247581
247581
|
license: "FSL-1.1-MIT",
|
@@ -247620,13 +247620,13 @@ 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-
|
247629
|
-
"@types/node": "22.15.
|
247623
|
+
"@inquirer/confirm": "5.1.10",
|
247624
|
+
"@inquirer/input": "4.1.10",
|
247625
|
+
"@inquirer/password": "4.0.13",
|
247626
|
+
"@inquirer/select": "4.2.1",
|
247627
|
+
"@settlemint/sdk-js": "2.2.3-main4078055b",
|
247628
|
+
"@settlemint/sdk-utils": "2.2.3-main4078055b",
|
247629
|
+
"@types/node": "22.15.17",
|
247630
247630
|
"@types/semver": "7.7.0",
|
247631
247631
|
"@types/which": "3.0.4",
|
247632
247632
|
"get-tsconfig": "4.10.0",
|
@@ -248727,6 +248727,9 @@ 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));
|
248730
248733
|
const checkCursorPos = () => screen.checkCursorPos();
|
248731
248734
|
rl.input.on("keypress", checkCursorPos);
|
248732
248735
|
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
@@ -262940,4 +262943,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
262940
262943
|
// src/cli.ts
|
262941
262944
|
sdkCliCommand();
|
262942
262945
|
|
262943
|
-
//# debugId=
|
262946
|
+
//# debugId=BC7C1A9C822C495064756E2164756E21
|