@settlemint/sdk-cli 1.0.9-pr9bf11a11 → 1.0.9-prb617d863
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 +36 -201
- package/dist/cli.js.map +4 -6
- package/package.json +12 -10
package/dist/cli.js
CHANGED
|
@@ -34802,7 +34802,7 @@ var require_cjs = __commonJS((exports) => {
|
|
|
34802
34802
|
exports.sync = impl.sync;
|
|
34803
34803
|
});
|
|
34804
34804
|
|
|
34805
|
-
// ../../node_modules
|
|
34805
|
+
// ../../node_modules/which/lib/index.js
|
|
34806
34806
|
var require_lib4 = __commonJS((exports, module) => {
|
|
34807
34807
|
var { isexe, sync: isexeSync } = require_cjs();
|
|
34808
34808
|
var { join: join4, delimiter, sep: sep2, posix: posix2 } = __require("path");
|
|
@@ -35723,93 +35723,9 @@ var require_opts = __commonJS((exports, module) => {
|
|
|
35723
35723
|
module.exports.loadGitConfig = loadGitConfig;
|
|
35724
35724
|
});
|
|
35725
35725
|
|
|
35726
|
-
// ../../node_modules/@npmcli/git/node_modules/which/lib/index.js
|
|
35727
|
-
var require_lib6 = __commonJS((exports, module) => {
|
|
35728
|
-
var { isexe, sync: isexeSync } = require_cjs();
|
|
35729
|
-
var { join: join4, delimiter, sep: sep2, posix: posix2 } = __require("path");
|
|
35730
|
-
var isWindows2 = process.platform === "win32";
|
|
35731
|
-
var rSlash = new RegExp(`[${posix2.sep}${sep2 === posix2.sep ? "" : sep2}]`.replace(/(\\)/g, "\\$1"));
|
|
35732
|
-
var rRel = new RegExp(`^\\.${rSlash.source}`);
|
|
35733
|
-
var getNotFoundError = (cmd) => Object.assign(new Error(`not found: ${cmd}`), { code: "ENOENT" });
|
|
35734
|
-
var getPathInfo = (cmd, {
|
|
35735
|
-
path: optPath = process.env.PATH,
|
|
35736
|
-
pathExt: optPathExt = process.env.PATHEXT,
|
|
35737
|
-
delimiter: optDelimiter = delimiter
|
|
35738
|
-
}) => {
|
|
35739
|
-
const pathEnv = cmd.match(rSlash) ? [""] : [
|
|
35740
|
-
...isWindows2 ? [process.cwd()] : [],
|
|
35741
|
-
...(optPath || "").split(optDelimiter)
|
|
35742
|
-
];
|
|
35743
|
-
if (isWindows2) {
|
|
35744
|
-
const pathExtExe = optPathExt || [".EXE", ".CMD", ".BAT", ".COM"].join(optDelimiter);
|
|
35745
|
-
const pathExt = pathExtExe.split(optDelimiter).flatMap((item) => [item, item.toLowerCase()]);
|
|
35746
|
-
if (cmd.includes(".") && pathExt[0] !== "") {
|
|
35747
|
-
pathExt.unshift("");
|
|
35748
|
-
}
|
|
35749
|
-
return { pathEnv, pathExt, pathExtExe };
|
|
35750
|
-
}
|
|
35751
|
-
return { pathEnv, pathExt: [""] };
|
|
35752
|
-
};
|
|
35753
|
-
var getPathPart = (raw, cmd) => {
|
|
35754
|
-
const pathPart = /^".*"$/.test(raw) ? raw.slice(1, -1) : raw;
|
|
35755
|
-
const prefix = !pathPart && rRel.test(cmd) ? cmd.slice(0, 2) : "";
|
|
35756
|
-
return prefix + join4(pathPart, cmd);
|
|
35757
|
-
};
|
|
35758
|
-
var which = async (cmd, opt = {}) => {
|
|
35759
|
-
const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt);
|
|
35760
|
-
const found = [];
|
|
35761
|
-
for (const envPart of pathEnv) {
|
|
35762
|
-
const p = getPathPart(envPart, cmd);
|
|
35763
|
-
for (const ext2 of pathExt) {
|
|
35764
|
-
const withExt = p + ext2;
|
|
35765
|
-
const is = await isexe(withExt, { pathExt: pathExtExe, ignoreErrors: true });
|
|
35766
|
-
if (is) {
|
|
35767
|
-
if (!opt.all) {
|
|
35768
|
-
return withExt;
|
|
35769
|
-
}
|
|
35770
|
-
found.push(withExt);
|
|
35771
|
-
}
|
|
35772
|
-
}
|
|
35773
|
-
}
|
|
35774
|
-
if (opt.all && found.length) {
|
|
35775
|
-
return found;
|
|
35776
|
-
}
|
|
35777
|
-
if (opt.nothrow) {
|
|
35778
|
-
return null;
|
|
35779
|
-
}
|
|
35780
|
-
throw getNotFoundError(cmd);
|
|
35781
|
-
};
|
|
35782
|
-
var whichSync = (cmd, opt = {}) => {
|
|
35783
|
-
const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt);
|
|
35784
|
-
const found = [];
|
|
35785
|
-
for (const pathEnvPart of pathEnv) {
|
|
35786
|
-
const p = getPathPart(pathEnvPart, cmd);
|
|
35787
|
-
for (const ext2 of pathExt) {
|
|
35788
|
-
const withExt = p + ext2;
|
|
35789
|
-
const is = isexeSync(withExt, { pathExt: pathExtExe, ignoreErrors: true });
|
|
35790
|
-
if (is) {
|
|
35791
|
-
if (!opt.all) {
|
|
35792
|
-
return withExt;
|
|
35793
|
-
}
|
|
35794
|
-
found.push(withExt);
|
|
35795
|
-
}
|
|
35796
|
-
}
|
|
35797
|
-
}
|
|
35798
|
-
if (opt.all && found.length) {
|
|
35799
|
-
return found;
|
|
35800
|
-
}
|
|
35801
|
-
if (opt.nothrow) {
|
|
35802
|
-
return null;
|
|
35803
|
-
}
|
|
35804
|
-
throw getNotFoundError(cmd);
|
|
35805
|
-
};
|
|
35806
|
-
module.exports = which;
|
|
35807
|
-
which.sync = whichSync;
|
|
35808
|
-
});
|
|
35809
|
-
|
|
35810
35726
|
// ../../node_modules/@npmcli/git/lib/which.js
|
|
35811
35727
|
var require_which = __commonJS((exports, module) => {
|
|
35812
|
-
var which =
|
|
35728
|
+
var which = require_lib4();
|
|
35813
35729
|
var gitPath;
|
|
35814
35730
|
try {
|
|
35815
35731
|
gitPath = which.sync("git");
|
|
@@ -37320,7 +37236,7 @@ var require_utils7 = __commonJS((exports) => {
|
|
|
37320
37236
|
});
|
|
37321
37237
|
|
|
37322
37238
|
// ../../node_modules/npm-package-arg/node_modules/validate-npm-package-name/lib/index.js
|
|
37323
|
-
var
|
|
37239
|
+
var require_lib6 = __commonJS((exports, module) => {
|
|
37324
37240
|
var { builtinModules: builtins } = __require("module");
|
|
37325
37241
|
var scopedPackagePattern = new RegExp("^(?:@([^/]+?)[/])?([^/]+?)$");
|
|
37326
37242
|
var blacklist = [
|
|
@@ -37412,7 +37328,7 @@ var require_npa = __commonJS((exports, module) => {
|
|
|
37412
37328
|
var HostedGit = require_lib3();
|
|
37413
37329
|
var semver = require_semver2();
|
|
37414
37330
|
var path5 = global.FAKE_WINDOWS ? __require("path").win32 : __require("path");
|
|
37415
|
-
var validatePackageName =
|
|
37331
|
+
var validatePackageName = require_lib6();
|
|
37416
37332
|
var { homedir } = __require("os");
|
|
37417
37333
|
var { log } = require_lib2();
|
|
37418
37334
|
var isWindows2 = process.platform === "win32" || global.FAKE_WINDOWS;
|
|
@@ -37951,7 +37867,7 @@ var require_dev_engines = __commonJS((exports, module) => {
|
|
|
37951
37867
|
});
|
|
37952
37868
|
|
|
37953
37869
|
// ../../node_modules/npm-install-checks/lib/index.js
|
|
37954
|
-
var
|
|
37870
|
+
var require_lib7 = __commonJS((exports, module) => {
|
|
37955
37871
|
var semver = require_semver2();
|
|
37956
37872
|
var currentEnv = require_current_env();
|
|
37957
37873
|
var { checkDevEngines } = require_dev_engines();
|
|
@@ -38035,7 +37951,7 @@ var require_lib8 = __commonJS((exports, module) => {
|
|
|
38035
37951
|
});
|
|
38036
37952
|
|
|
38037
37953
|
// ../../node_modules/npm-normalize-package-bin/lib/index.js
|
|
38038
|
-
var
|
|
37954
|
+
var require_lib8 = __commonJS((exports, module) => {
|
|
38039
37955
|
var { join: join4, basename } = __require("path");
|
|
38040
37956
|
var normalize2 = (pkg) => !pkg.bin ? removeBin(pkg) : typeof pkg.bin === "string" ? normalizeString(pkg) : Array.isArray(pkg.bin) ? normalizeArray(pkg) : typeof pkg.bin === "object" ? normalizeObject(pkg) : removeBin(pkg);
|
|
38041
37957
|
var normalizeString = (pkg) => {
|
|
@@ -38083,11 +37999,11 @@ var require_lib9 = __commonJS((exports, module) => {
|
|
|
38083
37999
|
});
|
|
38084
38000
|
|
|
38085
38001
|
// ../../node_modules/npm-pick-manifest/lib/index.js
|
|
38086
|
-
var
|
|
38002
|
+
var require_lib9 = __commonJS((exports, module) => {
|
|
38087
38003
|
var npa = require_npa();
|
|
38088
38004
|
var semver = require_semver2();
|
|
38089
|
-
var { checkEngine } =
|
|
38090
|
-
var normalizeBin =
|
|
38005
|
+
var { checkEngine } = require_lib7();
|
|
38006
|
+
var normalizeBin = require_lib8();
|
|
38091
38007
|
var engineOk = (manifest, npmVersion, nodeVersion) => {
|
|
38092
38008
|
try {
|
|
38093
38009
|
checkEngine(manifest, npmVersion, nodeVersion);
|
|
@@ -38249,7 +38165,7 @@ var require_clone = __commonJS((exports, module) => {
|
|
|
38249
38165
|
var getRevs = require_revs();
|
|
38250
38166
|
var spawn2 = require_spawn();
|
|
38251
38167
|
var { isWindows: isWindows2 } = require_utils7();
|
|
38252
|
-
var pickManifest =
|
|
38168
|
+
var pickManifest = require_lib9();
|
|
38253
38169
|
var fs3 = __require("fs/promises");
|
|
38254
38170
|
module.exports = (repo, ref = "HEAD", target = null, opts = {}) => getRevs(repo, opts).then((revs) => clone(repo, revs, ref, resolveRef(revs, ref, opts), target || defaultTarget(repo, opts.cwd), opts));
|
|
38255
38171
|
var maybeShallow = (repo, opts) => {
|
|
@@ -38381,7 +38297,7 @@ var require_is_clean = __commonJS((exports, module) => {
|
|
|
38381
38297
|
});
|
|
38382
38298
|
|
|
38383
38299
|
// ../../node_modules/@npmcli/git/lib/index.js
|
|
38384
|
-
var
|
|
38300
|
+
var require_lib10 = __commonJS((exports, module) => {
|
|
38385
38301
|
module.exports = {
|
|
38386
38302
|
clone: require_clone(),
|
|
38387
38303
|
revs: require_revs(),
|
|
@@ -40278,7 +40194,7 @@ var require_normalize = __commonJS((exports, module) => {
|
|
|
40278
40194
|
normalizePackageBin(data, changes);
|
|
40279
40195
|
}
|
|
40280
40196
|
if (steps.includes("gitHead") && !data.gitHead) {
|
|
40281
|
-
const git =
|
|
40197
|
+
const git = require_lib10();
|
|
40282
40198
|
const gitRoot = await git.find({ cwd: pkg.path, root });
|
|
40283
40199
|
let head;
|
|
40284
40200
|
if (gitRoot) {
|
|
@@ -40564,7 +40480,7 @@ var require_sort2 = __commonJS((exports, module) => {
|
|
|
40564
40480
|
});
|
|
40565
40481
|
|
|
40566
40482
|
// ../../node_modules/@npmcli/package-json/lib/index.js
|
|
40567
|
-
var
|
|
40483
|
+
var require_lib11 = __commonJS((exports, module) => {
|
|
40568
40484
|
var { readFile: readFile2, writeFile: writeFile2 } = __require("node:fs/promises");
|
|
40569
40485
|
var { resolve: resolve2 } = __require("node:path");
|
|
40570
40486
|
var parseJSON = require_lib();
|
|
@@ -228156,7 +228072,7 @@ var require_wrap_ansi = __commonJS((exports, module) => {
|
|
|
228156
228072
|
});
|
|
228157
228073
|
|
|
228158
228074
|
// ../../node_modules/mute-stream/lib/index.js
|
|
228159
|
-
var
|
|
228075
|
+
var require_lib12 = __commonJS((exports, module) => {
|
|
228160
228076
|
var Stream3 = __require("stream");
|
|
228161
228077
|
|
|
228162
228078
|
class MuteStream extends Stream3 {
|
|
@@ -241066,7 +240982,7 @@ var require_dist5 = __commonJS((exports) => {
|
|
|
241066
240982
|
});
|
|
241067
240983
|
|
|
241068
240984
|
// ../../node_modules/node-fetch-native/lib/index.cjs
|
|
241069
|
-
var
|
|
240985
|
+
var require_lib13 = __commonJS((exports, module) => {
|
|
241070
240986
|
var nodeFetch = require_dist5();
|
|
241071
240987
|
function fetch2(input, options) {
|
|
241072
240988
|
return nodeFetch.fetch(input, options);
|
|
@@ -241112,7 +241028,7 @@ var require_proxy = __commonJS((exports) => {
|
|
|
241112
241028
|
var require$$3 = __require("events");
|
|
241113
241029
|
var require$$5$4 = __require("url");
|
|
241114
241030
|
var require$$2 = __require("assert");
|
|
241115
|
-
var nodeFetchNative =
|
|
241031
|
+
var nodeFetchNative = require_lib13();
|
|
241116
241032
|
function _interopDefaultCompat(A5) {
|
|
241117
241033
|
return A5 && typeof A5 == "object" && "default" in A5 ? A5.default : A5;
|
|
241118
241034
|
}
|
|
@@ -258165,90 +258081,6 @@ var require_public_api = __commonJS((exports) => {
|
|
|
258165
258081
|
exports.stringify = stringify3;
|
|
258166
258082
|
});
|
|
258167
258083
|
|
|
258168
|
-
// ../../node_modules/which/lib/index.js
|
|
258169
|
-
var require_lib15 = __commonJS((exports, module) => {
|
|
258170
|
-
var { isexe, sync: isexeSync } = require_cjs();
|
|
258171
|
-
var { join: join5, delimiter: delimiter2, sep: sep3, posix: posix2 } = __require("path");
|
|
258172
|
-
var isWindows2 = process.platform === "win32";
|
|
258173
|
-
var rSlash = new RegExp(`[${posix2.sep}${sep3 === posix2.sep ? "" : sep3}]`.replace(/(\\)/g, "\\$1"));
|
|
258174
|
-
var rRel = new RegExp(`^\\.${rSlash.source}`);
|
|
258175
|
-
var getNotFoundError2 = (cmd2) => Object.assign(new Error(`not found: ${cmd2}`), { code: "ENOENT" });
|
|
258176
|
-
var getPathInfo2 = (cmd2, {
|
|
258177
|
-
path: optPath = process.env.PATH,
|
|
258178
|
-
pathExt: optPathExt = process.env.PATHEXT,
|
|
258179
|
-
delimiter: optDelimiter = delimiter2
|
|
258180
|
-
}) => {
|
|
258181
|
-
const pathEnv = cmd2.match(rSlash) ? [""] : [
|
|
258182
|
-
...isWindows2 ? [process.cwd()] : [],
|
|
258183
|
-
...(optPath || "").split(optDelimiter)
|
|
258184
|
-
];
|
|
258185
|
-
if (isWindows2) {
|
|
258186
|
-
const pathExtExe = optPathExt || [".EXE", ".CMD", ".BAT", ".COM"].join(optDelimiter);
|
|
258187
|
-
const pathExt = pathExtExe.split(optDelimiter).flatMap((item) => [item, item.toLowerCase()]);
|
|
258188
|
-
if (cmd2.includes(".") && pathExt[0] !== "") {
|
|
258189
|
-
pathExt.unshift("");
|
|
258190
|
-
}
|
|
258191
|
-
return { pathEnv, pathExt, pathExtExe };
|
|
258192
|
-
}
|
|
258193
|
-
return { pathEnv, pathExt: [""] };
|
|
258194
|
-
};
|
|
258195
|
-
var getPathPart = (raw, cmd2) => {
|
|
258196
|
-
const pathPart = /^".*"$/.test(raw) ? raw.slice(1, -1) : raw;
|
|
258197
|
-
const prefix = !pathPart && rRel.test(cmd2) ? cmd2.slice(0, 2) : "";
|
|
258198
|
-
return prefix + join5(pathPart, cmd2);
|
|
258199
|
-
};
|
|
258200
|
-
var which = async (cmd2, opt2 = {}) => {
|
|
258201
|
-
const { pathEnv, pathExt, pathExtExe } = getPathInfo2(cmd2, opt2);
|
|
258202
|
-
const found = [];
|
|
258203
|
-
for (const envPart of pathEnv) {
|
|
258204
|
-
const p6 = getPathPart(envPart, cmd2);
|
|
258205
|
-
for (const ext2 of pathExt) {
|
|
258206
|
-
const withExt = p6 + ext2;
|
|
258207
|
-
const is = await isexe(withExt, { pathExt: pathExtExe, ignoreErrors: true });
|
|
258208
|
-
if (is) {
|
|
258209
|
-
if (!opt2.all) {
|
|
258210
|
-
return withExt;
|
|
258211
|
-
}
|
|
258212
|
-
found.push(withExt);
|
|
258213
|
-
}
|
|
258214
|
-
}
|
|
258215
|
-
}
|
|
258216
|
-
if (opt2.all && found.length) {
|
|
258217
|
-
return found;
|
|
258218
|
-
}
|
|
258219
|
-
if (opt2.nothrow) {
|
|
258220
|
-
return null;
|
|
258221
|
-
}
|
|
258222
|
-
throw getNotFoundError2(cmd2);
|
|
258223
|
-
};
|
|
258224
|
-
var whichSync = (cmd2, opt2 = {}) => {
|
|
258225
|
-
const { pathEnv, pathExt, pathExtExe } = getPathInfo2(cmd2, opt2);
|
|
258226
|
-
const found = [];
|
|
258227
|
-
for (const pathEnvPart of pathEnv) {
|
|
258228
|
-
const p6 = getPathPart(pathEnvPart, cmd2);
|
|
258229
|
-
for (const ext2 of pathExt) {
|
|
258230
|
-
const withExt = p6 + ext2;
|
|
258231
|
-
const is = isexeSync(withExt, { pathExt: pathExtExe, ignoreErrors: true });
|
|
258232
|
-
if (is) {
|
|
258233
|
-
if (!opt2.all) {
|
|
258234
|
-
return withExt;
|
|
258235
|
-
}
|
|
258236
|
-
found.push(withExt);
|
|
258237
|
-
}
|
|
258238
|
-
}
|
|
258239
|
-
}
|
|
258240
|
-
if (opt2.all && found.length) {
|
|
258241
|
-
return found;
|
|
258242
|
-
}
|
|
258243
|
-
if (opt2.nothrow) {
|
|
258244
|
-
return null;
|
|
258245
|
-
}
|
|
258246
|
-
throw getNotFoundError2(cmd2);
|
|
258247
|
-
};
|
|
258248
|
-
module.exports = which;
|
|
258249
|
-
which.sync = whichSync;
|
|
258250
|
-
});
|
|
258251
|
-
|
|
258252
258084
|
// ../../node_modules/slugify/slugify.js
|
|
258253
258085
|
var require_slugify = __commonJS((exports, module) => {
|
|
258254
258086
|
(function(name2, root, factory) {
|
|
@@ -269286,7 +269118,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
|
269286
269118
|
var package_default = {
|
|
269287
269119
|
name: "@settlemint/sdk-cli",
|
|
269288
269120
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
|
269289
|
-
version: "1.0.9-
|
|
269121
|
+
version: "1.0.9-prb617d863",
|
|
269290
269122
|
type: "module",
|
|
269291
269123
|
private: false,
|
|
269292
269124
|
license: "FSL-1.1-MIT",
|
|
@@ -269329,22 +269161,24 @@ var package_default = {
|
|
|
269329
269161
|
tinyexec: "0.3.2"
|
|
269330
269162
|
},
|
|
269331
269163
|
devDependencies: {
|
|
269332
|
-
"@types/semver": "7.5.8",
|
|
269333
|
-
"@types/node": "22.10.10",
|
|
269334
|
-
"is-in-ci": "1.0.0",
|
|
269335
|
-
semver: "7.6.3",
|
|
269336
|
-
slugify: "1.6.6",
|
|
269337
|
-
yoctocolors: "2.1.1",
|
|
269338
269164
|
"@commander-js/extra-typings": "13.1.0",
|
|
269339
269165
|
"@inquirer/confirm": "5.1.3",
|
|
269340
269166
|
"@inquirer/input": "4.1.3",
|
|
269341
269167
|
"@inquirer/password": "4.0.6",
|
|
269342
269168
|
"@inquirer/select": "4.0.6",
|
|
269343
|
-
"@settlemint/sdk-js": "1.0.9-
|
|
269344
|
-
"@settlemint/sdk-utils": "1.0.9-
|
|
269169
|
+
"@settlemint/sdk-js": "1.0.9-prb617d863",
|
|
269170
|
+
"@settlemint/sdk-utils": "1.0.9-prb617d863",
|
|
269171
|
+
"@types/node": "22.12.0",
|
|
269172
|
+
"@types/semver": "7.5.8",
|
|
269173
|
+
"@types/which": "3.0.4",
|
|
269345
269174
|
"get-tsconfig": "4.10.0",
|
|
269346
269175
|
giget: "1.2.3",
|
|
269347
|
-
|
|
269176
|
+
"is-in-ci": "1.0.0",
|
|
269177
|
+
semver: "7.6.3",
|
|
269178
|
+
slugify: "1.6.6",
|
|
269179
|
+
which: "5.0.0",
|
|
269180
|
+
yaml: "2.7.0",
|
|
269181
|
+
yoctocolors: "2.1.1"
|
|
269348
269182
|
},
|
|
269349
269183
|
peerDependencies: {
|
|
269350
269184
|
hardhat: "2.22.18"
|
|
@@ -271836,8 +271670,8 @@ async function installPackage(names, options = {}) {
|
|
|
271836
271670
|
|
|
271837
271671
|
// ../utils/dist/package-manager.mjs
|
|
271838
271672
|
var import_console_table_printer3 = __toESM(require_dist2(), 1);
|
|
271839
|
-
var import_package_json = __toESM(
|
|
271840
|
-
var import_package_json2 = __toESM(
|
|
271673
|
+
var import_package_json = __toESM(require_lib11(), 1);
|
|
271674
|
+
var import_package_json2 = __toESM(require_lib11(), 1);
|
|
271841
271675
|
async function projectRoot2(fallbackToCwd = false, cwd) {
|
|
271842
271676
|
const packageJsonPath = await findUp("package.json", { cwd });
|
|
271843
271677
|
if (!packageJsonPath) {
|
|
@@ -274089,7 +273923,7 @@ function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
|
|
274089
273923
|
`);
|
|
274090
273924
|
}
|
|
274091
273925
|
// ../../node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
|
274092
|
-
var import_mute_stream = __toESM(
|
|
273926
|
+
var import_mute_stream = __toESM(require_lib12(), 1);
|
|
274093
273927
|
init_mjs();
|
|
274094
273928
|
import * as readline2 from "node:readline";
|
|
274095
273929
|
import { AsyncResource as AsyncResource3 } from "node:async_hooks";
|
|
@@ -274896,8 +274730,9 @@ var esm_default5 = createPrompt((config3, done) => {
|
|
|
274896
274730
|
// src/prompts/aat.prompt.ts
|
|
274897
274731
|
async function applicationAccessTokenPrompt(env2, application, settlemint, accept) {
|
|
274898
274732
|
const autoAccept = !!accept || is_in_ci_default;
|
|
274899
|
-
const
|
|
274900
|
-
const
|
|
274733
|
+
const hasApplicationChanged = env2.SETTLEMINT_APPLICATION !== application.uniqueName;
|
|
274734
|
+
const defaultAccessToken = hasApplicationChanged ? undefined : env2.SETTLEMINT_ACCESS_TOKEN;
|
|
274735
|
+
const defaultPossible = autoAccept && !!defaultAccessToken;
|
|
274901
274736
|
if (defaultPossible || is_in_ci_default) {
|
|
274902
274737
|
return defaultAccessToken;
|
|
274903
274738
|
}
|
|
@@ -278934,7 +278769,7 @@ function formatUseCaseName(name2) {
|
|
|
278934
278769
|
}
|
|
278935
278770
|
|
|
278936
278771
|
// src/utils/smart-contract-set/execute-foundry-command.ts
|
|
278937
|
-
var import_which = __toESM(
|
|
278772
|
+
var import_which = __toESM(require_lib4(), 1);
|
|
278938
278773
|
async function executeFoundryCommand(command, args) {
|
|
278939
278774
|
try {
|
|
278940
278775
|
await import_which.default(command);
|
|
@@ -279909,4 +279744,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
|
279909
279744
|
// src/cli.ts
|
|
279910
279745
|
sdkCliCommand();
|
|
279911
279746
|
|
|
279912
|
-
//# debugId=
|
|
279747
|
+
//# debugId=6B456B48DCE5548864756E2164756E21
|