Bump @ava/typescript from 3.0.1 to 4.0.0 (#1576)
* Bump @ava/typescript from 3.0.1 to 4.0.0 Bumps [@ava/typescript](https://github.com/avajs/typescript) from 3.0.1 to 4.0.0. - [Release notes](https://github.com/avajs/typescript/releases) - [Commits](https://github.com/avajs/typescript/compare/v3.0.1...v4.0.0) --- updated-dependencies: - dependency-name: "@ava/typescript" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update checked-in dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions@github.com>
This commit is contained in:
parent
ec298233c1
commit
19f00dc212
68 changed files with 2374 additions and 1754 deletions
26
node_modules/human-signals/README.md
generated
vendored
26
node_modules/human-signals/README.md
generated
vendored
|
|
@ -1,9 +1,8 @@
|
|||
[](https://codecov.io/gh/ehmicky/human-signals)
|
||||
[](https://travis-ci.org/ehmicky/human-signals)
|
||||
[](https://www.npmjs.com/package/human-signals)
|
||||
[](https://gitter.im/ehmicky/human-signals)
|
||||
[](https://twitter.com/intent/follow?screen_name=ehmicky)
|
||||
[](https://medium.com/@ehmicky)
|
||||
[](https://www.npmjs.com/package/human-signals)
|
||||
[](/types/main.d.ts)
|
||||
[](https://codecov.io/gh/ehmicky/human-signals)
|
||||
[](https://twitter.com/intent/follow?screen_name=ehmicky)
|
||||
[](https://medium.com/@ehmicky)
|
||||
|
||||
Human-friendly process signals.
|
||||
|
||||
|
|
@ -20,7 +19,7 @@ this includes:
|
|||
# Example
|
||||
|
||||
```js
|
||||
const { signalsByName, signalsByNumber } = require('human-signals')
|
||||
import { signalsByName, signalsByNumber } from 'human-signals'
|
||||
|
||||
console.log(signalsByName.SIGINT)
|
||||
// {
|
||||
|
|
@ -51,6 +50,11 @@ console.log(signalsByNumber[8])
|
|||
npm install human-signals
|
||||
```
|
||||
|
||||
This package works in Node.js >=14.18.0. It is an ES module and must be loaded
|
||||
using
|
||||
[an `import` or `import()` statement](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c),
|
||||
not `require()`.
|
||||
|
||||
# Usage
|
||||
|
||||
## signalsByName
|
||||
|
|
@ -101,7 +105,7 @@ Whether the current OS can handle this signal in Node.js using
|
|||
[`process.on(name, handler)`](https://nodejs.org/api/process.html#process_signal_events).
|
||||
|
||||
The list of supported signals
|
||||
[is OS-specific](https://github.com/ehmicky/cross-platform-node-guide/blob/master/docs/6_networking_ipc/signals.md#cross-platform-signals).
|
||||
[is OS-specific](https://github.com/ehmicky/cross-platform-node-guide/blob/main/docs/6_networking_ipc/signals.md#cross-platform-signals).
|
||||
|
||||
### action
|
||||
|
||||
|
|
@ -126,11 +130,7 @@ Which standard defined that signal.
|
|||
|
||||
# Support
|
||||
|
||||
If you found a bug or would like a new feature, _don't hesitate_ to
|
||||
[submit an issue on GitHub](../../issues).
|
||||
|
||||
For other questions, feel free to
|
||||
[chat with us on Gitter](https://gitter.im/ehmicky/human-signals).
|
||||
For any question, _don't hesitate_ to [submit an issue on GitHub](../../issues).
|
||||
|
||||
Everyone is welcome regardless of personal background. We enforce a
|
||||
[Code of conduct](CODE_OF_CONDUCT.md) in order to promote a positive and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue