@storm-software/config-tools 1.188.11 → 1.188.13
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/README.md +1 -1
- package/bin/config.cjs +4 -4
- package/bin/config.js +5 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/config.cjs
CHANGED
|
@@ -1449,11 +1449,11 @@ function createProgram() {
|
|
|
1449
1449
|
}
|
|
1450
1450
|
const program = new import_commander.Command("storm-config");
|
|
1451
1451
|
program.version("1.0.0", "-v --version", "display CLI version");
|
|
1452
|
-
|
|
1452
|
+
program.command("view", { isDefault: true }).description("View the current Storm configuration for the workspace.").option(
|
|
1453
1453
|
"-d --dir <path>",
|
|
1454
|
-
"A directory that exists inside the workspace root"
|
|
1455
|
-
|
|
1456
|
-
|
|
1454
|
+
"A directory that exists inside the workspace root",
|
|
1455
|
+
process.cwd()
|
|
1456
|
+
).action(viewAction);
|
|
1457
1457
|
return program;
|
|
1458
1458
|
}
|
|
1459
1459
|
async function viewAction({ dir }) {
|
package/bin/config.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
// bin/config.ts
|
|
4
4
|
import chalk2 from "chalk";
|
|
5
|
-
import { Command
|
|
5
|
+
import { Command } from "commander";
|
|
6
6
|
|
|
7
7
|
// src/create-storm-config.ts
|
|
8
8
|
import { workspaceConfigSchema } from "@storm-software/config/schema";
|
|
@@ -1424,11 +1424,11 @@ function createProgram() {
|
|
|
1424
1424
|
}
|
|
1425
1425
|
const program = new Command("storm-config");
|
|
1426
1426
|
program.version("1.0.0", "-v --version", "display CLI version");
|
|
1427
|
-
|
|
1427
|
+
program.command("view", { isDefault: true }).description("View the current Storm configuration for the workspace.").option(
|
|
1428
1428
|
"-d --dir <path>",
|
|
1429
|
-
"A directory that exists inside the workspace root"
|
|
1430
|
-
|
|
1431
|
-
|
|
1429
|
+
"A directory that exists inside the workspace root",
|
|
1430
|
+
process.cwd()
|
|
1431
|
+
).action(viewAction);
|
|
1432
1432
|
return program;
|
|
1433
1433
|
}
|
|
1434
1434
|
async function viewAction({ dir }) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.188.
|
|
3
|
+
"version": "1.188.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.",
|
|
6
6
|
"repository": {
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
],
|
|
212
212
|
"dependencies": {
|
|
213
213
|
"@ltd/j-toml": "1.38.0",
|
|
214
|
-
"@storm-software/config": "^1.134.
|
|
214
|
+
"@storm-software/config": "^1.134.13",
|
|
215
215
|
"c12": "^2.0.0-beta.2",
|
|
216
216
|
"chalk": "^4.1.2",
|
|
217
217
|
"commander": "^12.1.0",
|
|
@@ -224,5 +224,5 @@
|
|
|
224
224
|
"devDependencies": { "@types/node": "^22.10.2", "tsup": "8.4.0" },
|
|
225
225
|
"publishConfig": { "access": "public" },
|
|
226
226
|
"sideEffects": false,
|
|
227
|
-
"gitHead": "
|
|
227
|
+
"gitHead": "029d9e5632710490198e9fac989e7aa85b9dd1b9"
|
|
228
228
|
}
|