@storm-software/config-tools 1.111.3 → 1.114.1
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/CHANGELOG.md +37 -1
- package/README.md +2 -1
- package/index.cjs +31608 -31453
- package/index.js +31575 -31420
- package/meta.cjs.json +218 -239
- package/meta.esm.json +218 -239
- package/package.json +2 -2
- package/src/utilities/run.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.114.1",
|
|
4
4
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"types": "declarations.d.ts",
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"c12": "2.0.0-beta.2",
|
|
16
|
-
"chalk": "
|
|
16
|
+
"chalk": "^4.1.0",
|
|
17
17
|
"cosmiconfig": "9.0.0",
|
|
18
18
|
"deepmerge": "4.3.1",
|
|
19
19
|
"zod": "3.23.8"
|
package/src/utilities/run.d.ts
CHANGED
|
@@ -15,4 +15,4 @@ export type StdioOptions = IOType | Array<IOType | "ipc" | number | null | undef
|
|
|
15
15
|
* @param env - The environment variables
|
|
16
16
|
* @returns The result of the command
|
|
17
17
|
*/
|
|
18
|
-
export declare const run: (config: StormConfig, command: string, cwd?: string, stdio?: StdioOptions, env?: NodeJS.ProcessEnv) => Buffer
|
|
18
|
+
export declare const run: (config: StormConfig, command: string, cwd?: string, stdio?: StdioOptions, env?: NodeJS.ProcessEnv) => Buffer<ArrayBufferLike>;
|