summaryrefslogtreecommitdiff
path: root/node_modules/@malept/cross-spawn-promise/README.md
diff options
context:
space:
mode:
authorLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
committerLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
commit726b81b19251674e149ccfbb1abacbd837fc6db0 (patch)
treefbdbb227dc01357eb76e8222d76185bc124c5ca6 /node_modules/@malept/cross-spawn-promise/README.md
parent34f0890e175698940d49238097579f44e4d78c89 (diff)
downloadFlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.gz
FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.zst
Removed files that should not have been included in git
Diffstat (limited to 'node_modules/@malept/cross-spawn-promise/README.md')
-rw-r--r--node_modules/@malept/cross-spawn-promise/README.md27
1 files changed, 0 insertions, 27 deletions
diff --git a/node_modules/@malept/cross-spawn-promise/README.md b/node_modules/@malept/cross-spawn-promise/README.md
deleted file mode 100644
index 82d4cdb..0000000
--- a/node_modules/@malept/cross-spawn-promise/README.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# `@malept/cross-spawn-promise`
-
-> A promisified version of [`cross-spawn`](https://npm.im/cross-spawn) with slightly different behavior & extra options.
-
-[![CI](https://github.com/malept/cross-spawn-promise/workflows/CI/badge.svg)](https://github.com/malept/cross-spawn-promise/actions?query=workflow%3ACI)
-[![NPM package](https://img.shields.io/npm/v/@malept/cross-spawn-promise.svg)](https://www.npmjs.com/package/@malept/cross-spawn-promise)
-[![codecov](https://codecov.io/gh/malept/cross-spawn-promise/branch/master/graph/badge.svg)](https://codecov.io/gh/malept/cross-spawn-promise)
-
-## Different Behavior
-
-If the spawned process exits with a non-zero code, an `ExitCodeError` is thrown with the original
-command, code, `stdout`, and `stderr` as properties.
-
-If the spawned process is terminated by a signal on non-Windows platforms, an `ExitSignalError` is
-thrown with the original command, signal name, `stdout`, and `stderr` as properties.
-
-## Extra Options
-
-- `logger`: a `Function` such as `console.log` or `debug(name)` to log some information
- about the spawned process.
-- `updateErrorCallback`: a callback which mutates the error before it is re-thrown. Most commonly,
- this is used to augment the error message of `ENOENT` error to provide a more human-friendly
- message as to how to install the missing executable.
-
-## Legal
-
-This module is licensed under the Apache 2.0 license.