@storm-software/config-tools 1.189.6 → 1.189.7

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 CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-1.189.4-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
30
+ [![Version](https://img.shields.io/badge/version-1.189.6-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
package/dist/index.d.cts CHANGED
@@ -25,4 +25,4 @@ import 'c12';
25
25
  import 'zod';
26
26
  import '@storm-software/config/types';
27
27
  import 'node:path';
28
- import 'child_process';
28
+ import 'node:child_process';
package/dist/index.d.ts CHANGED
@@ -25,4 +25,4 @@ import 'c12';
25
25
  import 'zod';
26
26
  import '@storm-software/config/types';
27
27
  import 'node:path';
28
- import 'child_process';
28
+ import 'node:child_process';
@@ -11,4 +11,4 @@ import '../types.cjs';
11
11
  import '@storm-software/config';
12
12
  import '@storm-software/config/types';
13
13
  import 'node:path';
14
- import 'child_process';
14
+ import 'node:child_process';
@@ -11,4 +11,4 @@ import '../types.js';
11
11
  import '@storm-software/config';
12
12
  import '@storm-software/config/types';
13
13
  import 'node:path';
14
- import 'child_process';
14
+ import 'node:child_process';
@@ -1,4 +1,4 @@
1
- import * as child_process from 'child_process';
1
+ import * as node_child_process from 'node:child_process';
2
2
  import { StormWorkspaceConfig } from '@storm-software/config';
3
3
 
4
4
  declare const LARGE_BUFFER: number;
@@ -30,6 +30,6 @@ declare const run: (config: Partial<StormWorkspaceConfig>, command: string, cwd?
30
30
  * @param env - The environment variables
31
31
  * @returns A promise with the result of the command
32
32
  */
33
- declare const runAsync: (config: Partial<StormWorkspaceConfig>, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => child_process.ChildProcess;
33
+ declare const runAsync: (config: Partial<StormWorkspaceConfig>, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => node_child_process.ChildProcess;
34
34
 
35
35
  export { type IOType, LARGE_BUFFER, type StdioOptions, run, runAsync };
@@ -1,4 +1,4 @@
1
- import * as child_process from 'child_process';
1
+ import * as node_child_process from 'node:child_process';
2
2
  import { StormWorkspaceConfig } from '@storm-software/config';
3
3
 
4
4
  declare const LARGE_BUFFER: number;
@@ -30,6 +30,6 @@ declare const run: (config: Partial<StormWorkspaceConfig>, command: string, cwd?
30
30
  * @param env - The environment variables
31
31
  * @returns A promise with the result of the command
32
32
  */
33
- declare const runAsync: (config: Partial<StormWorkspaceConfig>, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => child_process.ChildProcess;
33
+ declare const runAsync: (config: Partial<StormWorkspaceConfig>, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => node_child_process.ChildProcess;
34
34
 
35
35
  export { type IOType, LARGE_BUFFER, type StdioOptions, run, runAsync };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.189.6",
3
+ "version": "1.189.7",
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.135.7",
214
+ "@storm-software/config": "^1.135.8",
215
215
  "c12": "^2.0.4",
216
216
  "chalk": "^4.1.2",
217
217
  "commander": "^12.1.0",
@@ -222,8 +222,8 @@
222
222
  "sqlite": "^5.1.1",
223
223
  "zod": "^4.3.6"
224
224
  },
225
- "devDependencies": { "@types/node": "^24.10.13", "tsup": "8.4.0" },
225
+ "devDependencies": { "@types/node": "^25.3.0", "tsup": "8.4.0" },
226
226
  "publishConfig": { "access": "public" },
227
227
  "sideEffects": false,
228
- "gitHead": "f9611db126b33c60336faef7eeff63eb1e8031b7"
228
+ "gitHead": "1246351be8bc0444be4f05feb8ddf68950fb4e39"
229
229
  }