File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ var defined = require('defined');
4
4
var createDefaultStream = require ( './lib/default_stream' ) ;
5
5
var Test = require ( './lib/test' ) ;
6
6
var createResult = require ( './lib/results' ) ;
7
- var through = require ( 'through' ) ;
7
+ var through = require ( '@ljharb/ through' ) ;
8
8
9
9
var canEmitExit = typeof process !== 'undefined' && process
10
10
&& typeof process . on === 'function' && process . browser !== true ;
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
- var through = require ( 'through' ) ;
3
+ var through = require ( '@ljharb/ through' ) ;
4
4
var fs = require ( 'fs' ) ;
5
5
6
6
module . exports = function ( ) {
Original file line number Diff line number Diff line change 3
3
var defined = require ( 'defined' ) ;
4
4
var EventEmitter = require ( 'events' ) . EventEmitter ;
5
5
var inherits = require ( 'inherits' ) ;
6
- var through = require ( 'through' ) ;
7
- var resumer = require ( 'resumer' ) ;
6
+ var through = require ( '@ljharb/ through' ) ;
7
+ var resumer = require ( '@ljharb/ resumer' ) ;
8
8
var inspect = require ( 'object-inspect' ) ;
9
9
var callBound = require ( 'call-bind/callBound' ) ;
10
10
var has = require ( 'has' ) ;
Original file line number Diff line number Diff line change 12
12
"test" : " test"
13
13
},
14
14
"dependencies" : {
15
+ "@ljharb/resumer" : " ~0.0.1" ,
16
+ "@ljharb/through" : " ~2.3.9" ,
15
17
"call-bind" : " ~1.0.2" ,
16
18
"deep-equal" : " ~1.1.1" ,
17
19
"defined" : " ~1.0.1" ,
24
26
"minimist" : " ~1.2.8" ,
25
27
"object-inspect" : " ~1.12.3" ,
26
28
"resolve" : " ~1.22.6" ,
27
- "resumer" : " ~0.0.0" ,
28
- "string.prototype.trim" : " ~1.2.8" ,
29
- "through" : " ~2.3.8"
29
+ "string.prototype.trim" : " ~1.2.8"
30
30
},
31
31
"devDependencies" : {
32
32
"@ljharb/eslint-config" : " ^21.1.0" ,
Original file line number Diff line number Diff line change 3
3
var tap = require ( 'tap' ) ;
4
4
var tape = require ( '../' ) ;
5
5
var forEach = require ( 'for-each' ) ;
6
- var through = require ( 'through' ) ;
6
+ var through = require ( '@ljharb/ through' ) ;
7
7
8
8
tap . test ( 'object results' , function ( assert ) {
9
9
var printer = through ( { objectMode : true } ) ;
Original file line number Diff line number Diff line change 2
2
3
3
var tap = require ( 'tap' ) ;
4
4
var tape = require ( '../' ) ;
5
- var through = require ( 'through' ) ;
5
+ var through = require ( '@ljharb/ through' ) ;
6
6
7
7
tap . test ( 'test.comment() in objectMode' , function ( assert ) {
8
8
var printer = through ( { objectMode : true } ) ;
You can’t perform that action at this time.
0 commit comments