@settlemint/sdk-cli 1.1.3-pr83196aab → 1.1.3-pr8e572b89
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 +8 -11
- package/dist/cli.js.map +4 -4
- package/package.json +5 -5
package/dist/cli.js
CHANGED
|
@@ -48070,7 +48070,6 @@ var require_re6 = __commonJS((exports, module) => {
|
|
|
48070
48070
|
var re = exports.re = [];
|
|
48071
48071
|
var safeRe = exports.safeRe = [];
|
|
48072
48072
|
var src = exports.src = [];
|
|
48073
|
-
var safeSrc = exports.safeSrc = [];
|
|
48074
48073
|
var t3 = exports.t = {};
|
|
48075
48074
|
var R = 0;
|
|
48076
48075
|
var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
|
|
@@ -48091,7 +48090,6 @@ var require_re6 = __commonJS((exports, module) => {
|
|
|
48091
48090
|
debug(name, index, value2);
|
|
48092
48091
|
t3[name] = index;
|
|
48093
48092
|
src[index] = value2;
|
|
48094
|
-
safeSrc[index] = safe;
|
|
48095
48093
|
re[index] = new RegExp(value2, isGlobal ? "g" : undefined);
|
|
48096
48094
|
safeRe[index] = new RegExp(safe, isGlobal ? "g" : undefined);
|
|
48097
48095
|
};
|
|
@@ -48182,7 +48180,7 @@ var require_identifiers6 = __commonJS((exports, module) => {
|
|
|
48182
48180
|
var require_semver10 = __commonJS((exports, module) => {
|
|
48183
48181
|
var debug = require_debug6();
|
|
48184
48182
|
var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants7();
|
|
48185
|
-
var { safeRe: re,
|
|
48183
|
+
var { safeRe: re, t: t3 } = require_re6();
|
|
48186
48184
|
var parseOptions = require_parse_options6();
|
|
48187
48185
|
var { compareIdentifiers } = require_identifiers6();
|
|
48188
48186
|
|
|
@@ -48324,8 +48322,7 @@ var require_semver10 = __commonJS((exports, module) => {
|
|
|
48324
48322
|
throw new Error("invalid increment argument: identifier is empty");
|
|
48325
48323
|
}
|
|
48326
48324
|
if (identifier) {
|
|
48327
|
-
const
|
|
48328
|
-
const match2 = `-${identifier}`.match(r2);
|
|
48325
|
+
const match2 = `-${identifier}`.match(this.options.loose ? re[t3.PRERELEASELOOSE] : re[t3.PRERELEASE]);
|
|
48329
48326
|
if (!match2 || match2[1] !== identifier) {
|
|
48330
48327
|
throw new Error(`invalid identifier: ${identifier}`);
|
|
48331
48328
|
}
|
|
@@ -274462,7 +274459,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
|
274462
274459
|
var package_default = {
|
|
274463
274460
|
name: "@settlemint/sdk-cli",
|
|
274464
274461
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
|
274465
|
-
version: "1.1.3-
|
|
274462
|
+
version: "1.1.3-pr8e572b89",
|
|
274466
274463
|
type: "module",
|
|
274467
274464
|
private: false,
|
|
274468
274465
|
license: "FSL-1.1-MIT",
|
|
@@ -274510,15 +274507,15 @@ var package_default = {
|
|
|
274510
274507
|
"@inquirer/input": "4.1.5",
|
|
274511
274508
|
"@inquirer/password": "4.0.8",
|
|
274512
274509
|
"@inquirer/select": "4.0.8",
|
|
274513
|
-
"@settlemint/sdk-js": "1.1.3-
|
|
274514
|
-
"@settlemint/sdk-utils": "1.1.3-
|
|
274515
|
-
"@types/node": "22.13.
|
|
274510
|
+
"@settlemint/sdk-js": "1.1.3-pr8e572b89",
|
|
274511
|
+
"@settlemint/sdk-utils": "1.1.3-pr8e572b89",
|
|
274512
|
+
"@types/node": "22.13.0",
|
|
274516
274513
|
"@types/semver": "7.5.8",
|
|
274517
274514
|
"@types/which": "3.0.4",
|
|
274518
274515
|
"get-tsconfig": "4.10.0",
|
|
274519
274516
|
giget: "1.2.4",
|
|
274520
274517
|
"is-in-ci": "1.0.0",
|
|
274521
|
-
semver: "7.7.
|
|
274518
|
+
semver: "7.7.0",
|
|
274522
274519
|
slugify: "1.6.6",
|
|
274523
274520
|
which: "5.0.0",
|
|
274524
274521
|
yaml: "2.7.0",
|
|
@@ -285381,4 +285378,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
|
285381
285378
|
// src/cli.ts
|
|
285382
285379
|
sdkCliCommand();
|
|
285383
285380
|
|
|
285384
|
-
//# debugId=
|
|
285381
|
+
//# debugId=E4256147B1AA387864756E2164756E21
|