@gasket/utils
Advanced tools
Comparing version 6.20.2 to 6.20.3
@@ -14,3 +14,3 @@ | ||
~~[applyEnvironmentOverrides(gasketConfig, config, \[localFile\])]~~ | Normalize the config by applying any environment or local overrides | ||
[runShellCommand(cmd, argv, options, \[debug\])] | Promise friendly wrapper to running a shell command (eg: git, npm, ls) which passes back any { stdout, stderr } to the error thrown. | ||
[runShellCommand(cmd, \[argv\], \[options\], \[debug\])] | Promise friendly wrapper to running a shell command (eg: git, npm, ls) which passes back any { stdout, stderr } to the error thrown. | ||
[tryRequire(path)] | Tries to require a module, but ignores if it is not found. If not found, result will be null. | ||
@@ -169,3 +169,3 @@ | ||
## runShellCommand(cmd, argv, options, \[debug\]) | ||
## runShellCommand(cmd, \[argv\], \[options\], \[debug\]) | ||
@@ -185,5 +185,5 @@ Promise friendly wrapper to running a shell command (eg: git, npm, ls) | ||
| --- | --- | --- | | ||
| cmd | `string` | binary that is run | | ||
| argv | `array` | args passed to npm binary through spawn. | | ||
| options | `object` | options passed to npm binary through spawn | | ||
| cmd | `string` | Binary that is run | | ||
| \[argv\] | `Array.<string>` | Arguments passed to npm binary through spawn. | | ||
| \[options\] | `object` | Options passed to npm binary through spawn | | ||
| \[options.signal\] | `object` | AbortControl signal allowing process to be canceled | | ||
@@ -244,3 +244,3 @@ | \[debug\] | `boolean` | When present pipes std{out,err} to process.* | | ||
[applyEnvironmentOverrides(gasketConfig, config, \[localFile\])]:#applyenvironmentoverridesgasketconfig-config-localfile | ||
[runShellCommand(cmd, argv, options, \[debug\])]:#runshellcommandcmd-argv-options-debug | ||
[runShellCommand(cmd, \[argv\], \[options\], \[debug\])]:#runshellcommandcmd-argv-options-debug | ||
[tryRequire(path)]:#tryrequirepath | ||
@@ -247,0 +247,0 @@ [new PackageManager(options)]:#new-packagemanageroptions |
{ | ||
"name": "@gasket/utils", | ||
"version": "6.20.2", | ||
"version": "6.20.3", | ||
"description": "Reusable utilities for Gasket internals", | ||
@@ -47,3 +47,3 @@ "main": "lib", | ||
"devDependencies": { | ||
"@gasket/engine": "^6.20.2", | ||
"@gasket/engine": "^6.20.3", | ||
"@godaddy/dmd": "^1.0.0", | ||
@@ -78,3 +78,3 @@ "abort-controller": "^3.0.0", | ||
], | ||
"gitHead": "0c34d84b6dd3010db139e90bbbda19b879a9396c" | ||
"gitHead": "a4b47e14f13326ef5219bc1e1efa80d5dce24aba" | ||
} |
26260