Skip to content

Commit 8ca6e16

Browse files
author
Benjamin Coe
committed
pulled in signal-exit module
1 parent 0f701da commit 8ca6e16

File tree

3 files changed

+8
-23
lines changed

3 files changed

+8
-23
lines changed

bin/nyc.js

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env node
2-
var sw = require('spawn-wrap')
2+
var foreground = require('foreground-child'),
3+
sw = require('spawn-wrap')
34

45
if (process.env.NYC_CWD) {
56
var NYC = require('../')
@@ -20,18 +21,5 @@ if (process.env.NYC_CWD) {
2021
NYC_CWD: process.cwd()
2122
})
2223

23-
// this spawn gets wrapped
24-
var child = require('child_process').spawn(
25-
process.argv[2],
26-
process.argv.slice(3),
27-
{ stdio: 'inherit' }
28-
)
29-
30-
child.on('close', function (code, signal) {
31-
if (signal) {
32-
process.kill(process.pid, signal)
33-
} else {
34-
process.exit(code)
35-
}
36-
})
24+
foreground(process.argv.slice(2))
3725
}

index.js

+3-8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var _ = require('lodash'),
77
mkdirp = require('mkdirp'),
88
path = require('path'),
99
rimraf = require('rimraf'),
10+
onExit = require('signal-exit'),
1011
stripBom = require('strip-bom')
1112

1213
function NYC (opts) {
@@ -64,7 +65,7 @@ NYC.prototype._wrapRequire = function () {
6465
NYC.prototype._wrapExit = function () {
6566
var _this = this,
6667
outputCoverage = function () {
67-
var coverage
68+
var coverage = global.__coverage__
6869
if (typeof __coverage__ === 'object') coverage = __coverage__
6970
if (!coverage) return
7071

@@ -75,13 +76,7 @@ NYC.prototype._wrapExit = function () {
7576
)
7677
}
7778

78-
var _kill = process.kill
79-
process.kill = function (pid, signal) {
80-
outputCoverage()
81-
_kill(pid, signal)
82-
}
83-
84-
process.on('exit', function () {
79+
onExit(function () {
8580
outputCoverage()
8681
})
8782
}

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@
2828
"author": "Ben Coe <[email protected]>",
2929
"license": "ISC",
3030
"dependencies": {
31+
"foreground-child": "^1.1.0",
3132
"istanbul": "^0.3.14",
3233
"jsonstream": "^1.0.3",
3334
"lodash": "^3.8.0",
3435
"mkdirp": "^0.5.0",
3536
"rimraf": "^2.3.3",
37+
"signal-exit": "^1.0.1",
3638
"spawn-wrap": "0.0.9",
3739
"strip-bom": "^1.0.0",
3840
"yargs": "^3.8.0"

0 commit comments

Comments
 (0)