@settlemint/sdk-cli 0.6.40 → 0.6.41-main8881c07
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 +6 -4
- package/dist/cli.js.map +3 -3
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -272337,7 +272337,7 @@ function connectCommand() {
|
|
|
272337
272337
|
var package_default = {
|
|
272338
272338
|
name: "@settlemint/sdk-cli",
|
|
272339
272339
|
description: "SettleMint SDK, integrate SettleMint into your application with ease.",
|
|
272340
|
-
version: "0.6.
|
|
272340
|
+
version: "0.6.41-main8881c07",
|
|
272341
272341
|
type: "module",
|
|
272342
272342
|
private: false,
|
|
272343
272343
|
license: "FSL-1.1-MIT",
|
|
@@ -272387,8 +272387,8 @@ var package_default = {
|
|
|
272387
272387
|
"@inquirer/input": "4.1.0",
|
|
272388
272388
|
"@inquirer/password": "4.0.3",
|
|
272389
272389
|
"@inquirer/select": "4.0.3",
|
|
272390
|
-
"@settlemint/sdk-js": "0.6.
|
|
272391
|
-
"@settlemint/sdk-utils": "0.6.
|
|
272390
|
+
"@settlemint/sdk-js": "0.6.41-main8881c07",
|
|
272391
|
+
"@settlemint/sdk-utils": "0.6.41-main8881c07",
|
|
272392
272392
|
"get-tsconfig": "4.8.1",
|
|
272393
272393
|
giget: "1.2.3"
|
|
272394
272394
|
},
|
|
@@ -273498,6 +273498,7 @@ function capitalizeFirstLetter(val) {
|
|
|
273498
273498
|
}
|
|
273499
273499
|
async function executeCommand2(command, args, options) {
|
|
273500
273500
|
const child = spawn2(command, args, { env: { ...process.env, ...options?.env } });
|
|
273501
|
+
process.stdin.pipe(child.stdin);
|
|
273501
273502
|
return new Promise((resolve22, reject) => {
|
|
273502
273503
|
child.stdout.on("data", (data) => {
|
|
273503
273504
|
console.log(data.toString());
|
|
@@ -273508,6 +273509,7 @@ async function executeCommand2(command, args, options) {
|
|
|
273508
273509
|
child.on("error", (err) => reject(err));
|
|
273509
273510
|
child.on("close", (code2) => {
|
|
273510
273511
|
if (code2 === 0 || code2 === null || code2 === 143) {
|
|
273512
|
+
process.stdin.unpipe(child.stdin);
|
|
273511
273513
|
resolve22();
|
|
273512
273514
|
return;
|
|
273513
273515
|
}
|
|
@@ -275814,4 +275816,4 @@ sdkcli.parseAsync(process.argv).catch((reason) => {
|
|
|
275814
275816
|
cancel2(reason);
|
|
275815
275817
|
});
|
|
275816
275818
|
|
|
275817
|
-
//# debugId=
|
|
275819
|
+
//# debugId=D924B245F3A3D67864756E2164756E21
|