@settlemint/sdk-cli 2.1.1-pr48657fc9 → 2.1.1-prca6b6840
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 -10
- package/dist/cli.js.map +4 -4
- package/package.json +3 -3
package/dist/cli.js
CHANGED
@@ -837,7 +837,7 @@ var require_dist2 = __commonJS((exports) => {
|
|
837
837
|
// ../../node_modules/@dotenvx/dotenvx/package.json
|
838
838
|
var require_package = __commonJS((exports, module) => {
|
839
839
|
module.exports = {
|
840
|
-
version: "1.39.
|
840
|
+
version: "1.39.1",
|
841
841
|
name: "@dotenvx/dotenvx",
|
842
842
|
description: "a better dotenv–from the creator of `dotenv`",
|
843
843
|
author: "@motdotla",
|
@@ -3329,7 +3329,7 @@ var require_fsx = __commonJS((exports, module) => {
|
|
3329
3329
|
var require_package2 = __commonJS((exports, module) => {
|
3330
3330
|
module.exports = {
|
3331
3331
|
name: "dotenv",
|
3332
|
-
version: "16.
|
3332
|
+
version: "16.5.0",
|
3333
3333
|
description: "Loads environment variables from .env file",
|
3334
3334
|
main: "lib/main.js",
|
3335
3335
|
types: "lib/main.d.ts",
|
@@ -3360,6 +3360,7 @@ var require_package2 = __commonJS((exports, module) => {
|
|
3360
3360
|
type: "git",
|
3361
3361
|
url: "git://github.com/motdotla/dotenv.git"
|
3362
3362
|
},
|
3363
|
+
homepage: "https://github.com/motdotla/dotenv#readme",
|
3363
3364
|
funding: "https://dotenvx.com",
|
3364
3365
|
keywords: [
|
3365
3366
|
"dotenv",
|
@@ -3445,9 +3446,6 @@ var require_main = __commonJS((exports, module) => {
|
|
3445
3446
|
}
|
3446
3447
|
return DotenvModule.parse(decrypted);
|
3447
3448
|
}
|
3448
|
-
function _log(message) {
|
3449
|
-
console.log(`[dotenv@${version}][INFO] ${message}`);
|
3450
|
-
}
|
3451
3449
|
function _warn(message) {
|
3452
3450
|
console.log(`[dotenv@${version}][WARN] ${message}`);
|
3453
3451
|
}
|
@@ -3520,7 +3518,10 @@ var require_main = __commonJS((exports, module) => {
|
|
3520
3518
|
return envPath[0] === "~" ? path.join(os.homedir(), envPath.slice(1)) : envPath;
|
3521
3519
|
}
|
3522
3520
|
function _configVault(options) {
|
3523
|
-
|
3521
|
+
const debug = Boolean(options && options.debug);
|
3522
|
+
if (debug) {
|
3523
|
+
_debug("Loading env from encrypted .env.vault");
|
3524
|
+
}
|
3524
3525
|
const parsed = DotenvModule._parseVault(options);
|
3525
3526
|
let processEnv = process.env;
|
3526
3527
|
if (options && options.processEnv != null) {
|
@@ -245277,7 +245278,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
245277
245278
|
var package_default = {
|
245278
245279
|
name: "@settlemint/sdk-cli",
|
245279
245280
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
245280
|
-
version: "2.1.1-
|
245281
|
+
version: "2.1.1-prca6b6840",
|
245281
245282
|
type: "module",
|
245282
245283
|
private: false,
|
245283
245284
|
license: "FSL-1.1-MIT",
|
@@ -245326,8 +245327,8 @@ var package_default = {
|
|
245326
245327
|
"@inquirer/input": "4.1.9",
|
245327
245328
|
"@inquirer/password": "4.0.12",
|
245328
245329
|
"@inquirer/select": "4.1.1",
|
245329
|
-
"@settlemint/sdk-js": "2.1.1-
|
245330
|
-
"@settlemint/sdk-utils": "2.1.1-
|
245330
|
+
"@settlemint/sdk-js": "2.1.1-prca6b6840",
|
245331
|
+
"@settlemint/sdk-utils": "2.1.1-prca6b6840",
|
245331
245332
|
"@types/node": "22.14.1",
|
245332
245333
|
"@types/semver": "7.7.0",
|
245333
245334
|
"@types/which": "3.0.4",
|
@@ -250267,6 +250268,7 @@ export const { client: ${graphqlClientVariable}, graphql: ${graphqlVariable} } =
|
|
250267
250268
|
instances: JSON.parse(process.env.SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS || '[]'),
|
250268
250269
|
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN!,
|
250269
250270
|
subgraphName: "${name3}",
|
250271
|
+
cache: "force-cache",
|
250270
250272
|
}, {
|
250271
250273
|
fetch: requestLogger(logger, "the-graph-${name3}", fetch) as typeof fetch,
|
250272
250274
|
});`
|
@@ -259871,4 +259873,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
259871
259873
|
// src/cli.ts
|
259872
259874
|
sdkCliCommand();
|
259873
259875
|
|
259874
|
-
//# debugId=
|
259876
|
+
//# debugId=961D6ED83367661864756E2164756E21
|