Skip to content

Commit b39dec5

Browse files
author
Benjamin Coe
committed
new signal-exit handles process.exit() in process.on('exit')
1 parent c465e9e commit b39dec5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ NYC.prototype._wrapExit = function () {
9292
)
9393
}
9494

95-
var opts = {alwaysLast: true}
96-
// allow more signal handlers in unit tests.
95+
// we always want to write coverage
96+
// regardless of how the process exits.
9797
onExit(function () {
9898
outputCoverage()
99-
}, opts)
99+
})
100100
}
101101

102102
NYC.prototype.wrap = function (bin) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"lodash": "^3.8.0",
4343
"mkdirp": "^0.5.0",
4444
"rimraf": "^2.3.3",
45-
"signal-exit": "^2.0.0",
45+
"signal-exit": "^2.1.0",
4646
"spawn-wrap": "^1.0.1",
4747
"strip-bom": "^1.0.0",
4848
"yargs": "^3.8.0"

0 commit comments

Comments
 (0)