@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 +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/utilities/index.d.cts +1 -1
- package/dist/utilities/index.d.ts +1 -1
- package/dist/utilities/run.d.cts +2 -2
- package/dist/utilities/run.d.ts +2 -2
- package/package.json +4 -4
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/utilities/run.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
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) =>
|
|
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/dist/utilities/run.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
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) =>
|
|
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.
|
|
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.
|
|
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": "^
|
|
225
|
+
"devDependencies": { "@types/node": "^25.3.0", "tsup": "8.4.0" },
|
|
226
226
|
"publishConfig": { "access": "public" },
|
|
227
227
|
"sideEffects": false,
|
|
228
|
-
"gitHead": "
|
|
228
|
+
"gitHead": "1246351be8bc0444be4f05feb8ddf68950fb4e39"
|
|
229
229
|
}
|