@storm-software/config-tools 1.151.5 → 1.151.6

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.
@@ -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, command: string, cwd?: string, stdio?: StdioOptions, env?: NodeJS.ProcessEnv) => Buffer<ArrayBufferLike>;
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, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => child_process.ChildProcess;
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 };
@@ -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, command: string, cwd?: string, stdio?: StdioOptions, env?: NodeJS.ProcessEnv) => Buffer<ArrayBufferLike>;
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, command: string, cwd?: string, env?: NodeJS.ProcessEnv) => child_process.ChildProcess;
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.151.5",
3
+ "version": "1.151.6",
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": {