@storm-software/config-tools 1.151.5 → 1.152.0
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/utilities/run.d.cts +2 -2
- package/dist/utilities/run.d.ts +2 -2
- package/package.json +1 -1
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/dist/utilities/run.d.cts
CHANGED
|
@@ -17,7 +17,7 @@ type StdioOptions = IOType | Array<IOType | "ipc" | number | null | undefined>;
|
|
|
17
17
|
* @param env - The environment variables
|
|
18
18
|
* @returns The result of the command
|
|
19
19
|
*/
|
|
20
|
-
declare const run: (config: StormConfig
|
|
20
|
+
declare const run: (config: Partial<StormConfig>, command: string, cwd?: string, stdio?: StdioOptions, env?: NodeJS.ProcessEnv) => Buffer<ArrayBufferLike>;
|
|
21
21
|
/**
|
|
22
22
|
* Run an asynchronous command line process
|
|
23
23
|
*
|
|
@@ -30,6 +30,6 @@ declare const run: (config: StormConfig, command: string, cwd?: string, stdio?:
|
|
|
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: StormConfig
|
|
33
|
+
declare const runAsync: (config: Partial<StormConfig>, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => child_process.ChildProcess;
|
|
34
34
|
|
|
35
35
|
export { type IOType, LARGE_BUFFER, type StdioOptions, run, runAsync };
|
package/dist/utilities/run.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ type StdioOptions = IOType | Array<IOType | "ipc" | number | null | undefined>;
|
|
|
17
17
|
* @param env - The environment variables
|
|
18
18
|
* @returns The result of the command
|
|
19
19
|
*/
|
|
20
|
-
declare const run: (config: StormConfig
|
|
20
|
+
declare const run: (config: Partial<StormConfig>, command: string, cwd?: string, stdio?: StdioOptions, env?: NodeJS.ProcessEnv) => Buffer<ArrayBufferLike>;
|
|
21
21
|
/**
|
|
22
22
|
* Run an asynchronous command line process
|
|
23
23
|
*
|
|
@@ -30,6 +30,6 @@ declare const run: (config: StormConfig, command: string, cwd?: string, stdio?:
|
|
|
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: StormConfig
|
|
33
|
+
declare const runAsync: (config: Partial<StormConfig>, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => 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.
|
|
3
|
+
"version": "1.152.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
6
6
|
"repository": {
|