Update checked-in dependencies
This commit is contained in:
parent
38bb211981
commit
d6a5bf5c1c
96 changed files with 4450 additions and 174 deletions
10
node_modules/signal-exit/CHANGELOG.md
generated
vendored
10
node_modules/signal-exit/CHANGELOG.md
generated
vendored
|
|
@ -1,7 +1,15 @@
|
|||
# Change Log
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### [3.0.3](https://github.com/tapjs/signal-exit/compare/v3.0.2...v3.0.3) (2020-03-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* patch `SIGHUP` to `SIGINT` when on Windows ([cfd1046](https://github.com/tapjs/signal-exit/commit/cfd1046079af4f0e44f93c69c237a09de8c23ef2))
|
||||
* **ci:** use Travis for Windows builds ([007add7](https://github.com/tapjs/signal-exit/commit/007add793d2b5ae3c382512103adbf321768a0b8))
|
||||
|
||||
<a name="3.0.1"></a>
|
||||
## [3.0.1](https://github.com/tapjs/signal-exit/compare/v3.0.0...v3.0.1) (2016-09-08)
|
||||
|
||||
|
|
|
|||
1
node_modules/signal-exit/README.md
generated
vendored
1
node_modules/signal-exit/README.md
generated
vendored
|
|
@ -3,7 +3,6 @@
|
|||
[](https://travis-ci.org/tapjs/signal-exit)
|
||||
[](https://coveralls.io/r/tapjs/signal-exit?branch=master)
|
||||
[](https://www.npmjs.com/package/signal-exit)
|
||||
[](https://ci.appveyor.com/project/bcoe/signal-exit)
|
||||
[](https://github.com/conventional-changelog/standard-version)
|
||||
|
||||
When you want to fire an event no matter how a process exits:
|
||||
|
|
|
|||
6
node_modules/signal-exit/index.js
generated
vendored
6
node_modules/signal-exit/index.js
generated
vendored
|
|
@ -3,6 +3,7 @@
|
|||
// ignored, since we can never get coverage for them.
|
||||
var assert = require('assert')
|
||||
var signals = require('./signals.js')
|
||||
var isWin = /^win/i.test(process.platform)
|
||||
|
||||
var EE = require('events')
|
||||
/* istanbul ignore if */
|
||||
|
|
@ -92,6 +93,11 @@ signals.forEach(function (sig) {
|
|||
/* istanbul ignore next */
|
||||
emit('afterexit', null, sig)
|
||||
/* istanbul ignore next */
|
||||
if (isWin && sig === 'SIGHUP') {
|
||||
// "SIGHUP" throws an `ENOSYS` error on Windows,
|
||||
// so use a supported signal instead
|
||||
sig = 'SIGINT'
|
||||
}
|
||||
process.kill(process.pid, sig)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
4
node_modules/signal-exit/package.json
generated
vendored
4
node_modules/signal-exit/package.json
generated
vendored
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "signal-exit",
|
||||
"version": "3.0.2",
|
||||
"version": "3.0.3",
|
||||
"description": "when you want to fire an event no matter how a process exits.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
"chai": "^3.5.0",
|
||||
"coveralls": "^2.11.10",
|
||||
"nyc": "^8.1.0",
|
||||
"standard": "^7.1.2",
|
||||
"standard": "^8.1.0",
|
||||
"standard-version": "^2.3.0",
|
||||
"tap": "^8.0.1"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue