File tree 3 files changed +8
-23
lines changed
3 files changed +8
-23
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
- var sw = require ( 'spawn-wrap' )
2
+ var foreground = require ( 'foreground-child' ) ,
3
+ sw = require ( 'spawn-wrap' )
3
4
4
5
if ( process . env . NYC_CWD ) {
5
6
var NYC = require ( '../' )
@@ -20,18 +21,5 @@ if (process.env.NYC_CWD) {
20
21
NYC_CWD : process . cwd ( )
21
22
} )
22
23
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 ) )
37
25
}
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ var _ = require('lodash'),
7
7
mkdirp = require ( 'mkdirp' ) ,
8
8
path = require ( 'path' ) ,
9
9
rimraf = require ( 'rimraf' ) ,
10
+ onExit = require ( 'signal-exit' ) ,
10
11
stripBom = require ( 'strip-bom' )
11
12
12
13
function NYC ( opts ) {
@@ -64,7 +65,7 @@ NYC.prototype._wrapRequire = function () {
64
65
NYC . prototype . _wrapExit = function ( ) {
65
66
var _this = this ,
66
67
outputCoverage = function ( ) {
67
- var coverage
68
+ var coverage = global . __coverage__
68
69
if ( typeof __coverage__ === 'object' ) coverage = __coverage__
69
70
if ( ! coverage ) return
70
71
@@ -75,13 +76,7 @@ NYC.prototype._wrapExit = function () {
75
76
)
76
77
}
77
78
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 ( ) {
85
80
outputCoverage ( )
86
81
} )
87
82
}
Original file line number Diff line number Diff line change 28
28
"author" :
" Ben Coe <[email protected] >" ,
29
29
"license" : " ISC" ,
30
30
"dependencies" : {
31
+ "foreground-child" : " ^1.1.0" ,
31
32
"istanbul" : " ^0.3.14" ,
32
33
"jsonstream" : " ^1.0.3" ,
33
34
"lodash" : " ^3.8.0" ,
34
35
"mkdirp" : " ^0.5.0" ,
35
36
"rimraf" : " ^2.3.3" ,
37
+ "signal-exit" : " ^1.0.1" ,
36
38
"spawn-wrap" : " 0.0.9" ,
37
39
"strip-bom" : " ^1.0.0" ,
38
40
"yargs" : " ^3.8.0"
You can’t perform that action at this time.
0 commit comments