@settlemint/sdk-cli 0.6.41-pr10151ed → 0.6.41-pr48e5ba2
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 +10 -7
- package/dist/cli.js.map +4 -4
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -272334,7 +272334,7 @@ function connectCommand() {
|
|
|
272334
272334
|
var package_default = {
|
|
272335
272335
|
name: "@settlemint/sdk-cli",
|
|
272336
272336
|
description: "SettleMint SDK, integrate SettleMint into your application with ease.",
|
|
272337
|
-
version: "0.6.41-
|
|
272337
|
+
version: "0.6.41-pr48e5ba2",
|
|
272338
272338
|
type: "module",
|
|
272339
272339
|
private: false,
|
|
272340
272340
|
license: "FSL-1.1-MIT",
|
|
@@ -272385,8 +272385,8 @@ var package_default = {
|
|
|
272385
272385
|
"@inquirer/input": "4.1.0",
|
|
272386
272386
|
"@inquirer/password": "4.0.3",
|
|
272387
272387
|
"@inquirer/select": "4.0.3",
|
|
272388
|
-
"@settlemint/sdk-js": "0.6.41-
|
|
272389
|
-
"@settlemint/sdk-utils": "0.6.41-
|
|
272388
|
+
"@settlemint/sdk-js": "0.6.41-pr48e5ba2",
|
|
272389
|
+
"@settlemint/sdk-utils": "0.6.41-pr48e5ba2",
|
|
272390
272390
|
"get-tsconfig": "4.8.1",
|
|
272391
272391
|
giget: "1.2.3"
|
|
272392
272392
|
},
|
|
@@ -273501,12 +273501,12 @@ async function executeCommand2(command, args, options) {
|
|
|
273501
273501
|
return new Promise((resolve22, reject) => {
|
|
273502
273502
|
child.stdout.on("data", (data) => {
|
|
273503
273503
|
if (!options?.silent) {
|
|
273504
|
-
|
|
273504
|
+
process.stdout.write(data);
|
|
273505
273505
|
}
|
|
273506
273506
|
output.push(data.toString());
|
|
273507
273507
|
});
|
|
273508
273508
|
child.stderr.on("data", (data) => {
|
|
273509
|
-
|
|
273509
|
+
process.stderr.write(data);
|
|
273510
273510
|
});
|
|
273511
273511
|
child.on("error", (err) => reject(err));
|
|
273512
273512
|
child.on("close", (code2) => {
|
|
@@ -275234,7 +275234,10 @@ async function getHardhatConfigData(envConfig) {
|
|
|
275234
275234
|
const { command, args } = await getPackageManagerExecutable();
|
|
275235
275235
|
const output = await executeCommand2(command, [...args, "ts-node", "-e", `import hardhat from "hardhat";
|
|
275236
275236
|
console.log(JSON.stringify(hardhat.userConfig));`], {
|
|
275237
|
-
env:
|
|
275237
|
+
env: {
|
|
275238
|
+
...process.env,
|
|
275239
|
+
...envConfig
|
|
275240
|
+
},
|
|
275238
275241
|
silent: true
|
|
275239
275242
|
});
|
|
275240
275243
|
const config4 = JSON.parse(output.join(" "));
|
|
@@ -275728,4 +275731,4 @@ sdkcli.parseAsync(process.argv).catch((reason) => {
|
|
|
275728
275731
|
cancel2(reason);
|
|
275729
275732
|
});
|
|
275730
275733
|
|
|
275731
|
-
//# debugId=
|
|
275734
|
+
//# debugId=BF6D5162A267799864756E2164756E21
|