@settlemint/sdk-cli 2.5.1-pr11c31cf6 → 2.5.1-pr18a03541
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 +11 -9
- package/dist/cli.js.map +3 -3
- package/package.json +7 -7
package/dist/cli.js
CHANGED
@@ -265083,7 +265083,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
265083
265083
|
var package_default = {
|
265084
265084
|
name: "@settlemint/sdk-cli",
|
265085
265085
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
265086
|
-
version: "2.5.1-
|
265086
|
+
version: "2.5.1-pr18a03541",
|
265087
265087
|
type: "module",
|
265088
265088
|
private: false,
|
265089
265089
|
license: "FSL-1.1-MIT",
|
@@ -265133,12 +265133,12 @@ var package_default = {
|
|
265133
265133
|
"@inquirer/confirm": "5.1.14",
|
265134
265134
|
"@inquirer/input": "4.2.1",
|
265135
265135
|
"@inquirer/password": "4.0.17",
|
265136
|
-
"@inquirer/select": "4.3.
|
265137
|
-
"@settlemint/sdk-hasura": "2.5.1-
|
265138
|
-
"@settlemint/sdk-js": "2.5.1-
|
265139
|
-
"@settlemint/sdk-utils": "2.5.1-
|
265140
|
-
"@settlemint/sdk-viem": "2.5.1-
|
265141
|
-
"@types/node": "24.
|
265136
|
+
"@inquirer/select": "4.3.1",
|
265137
|
+
"@settlemint/sdk-hasura": "2.5.1-pr18a03541",
|
265138
|
+
"@settlemint/sdk-js": "2.5.1-pr18a03541",
|
265139
|
+
"@settlemint/sdk-utils": "2.5.1-pr18a03541",
|
265140
|
+
"@settlemint/sdk-viem": "2.5.1-pr18a03541",
|
265141
|
+
"@types/node": "24.0.15",
|
265142
265142
|
"@types/semver": "7.7.0",
|
265143
265143
|
"@types/which": "3.0.4",
|
265144
265144
|
"get-tsconfig": "4.10.1",
|
@@ -303475,14 +303475,16 @@ ${theme.style.help(`(${config4.instructions?.pager ?? "Use arrow keys to reveal
|
|
303475
303475
|
helpTipTop = theme.style.help(`(${config4.instructions?.navigation ?? "Use arrow keys"})`);
|
303476
303476
|
}
|
303477
303477
|
}
|
303478
|
+
let separatorCount = 0;
|
303478
303479
|
const page = usePagination({
|
303479
303480
|
items,
|
303480
303481
|
active,
|
303481
303482
|
renderItem({ item, isActive, index }) {
|
303482
303483
|
if (Separator.isSeparator(item)) {
|
303484
|
+
separatorCount++;
|
303483
303485
|
return ` ${item.separator}`;
|
303484
303486
|
}
|
303485
|
-
const indexLabel = theme.indexMode === "number" ? `${index + 1}. ` : "";
|
303487
|
+
const indexLabel = theme.indexMode === "number" ? `${index + 1 - separatorCount}. ` : "";
|
303486
303488
|
if (item.disabled) {
|
303487
303489
|
const disabledLabel = typeof item.disabled === "string" ? item.disabled : "(disabled)";
|
303488
303490
|
return theme.style.disabled(`${indexLabel}${item.name} ${disabledLabel}`);
|
@@ -330958,4 +330960,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
330958
330960
|
// src/cli.ts
|
330959
330961
|
sdkCliCommand();
|
330960
330962
|
|
330961
|
-
//# debugId=
|
330963
|
+
//# debugId=7893C478624D86FF64756E2164756E21
|