File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- var combine = require ( 'stream-combiner' ) ,
1
+ 'use strict' ;
2
+
3
+ var splicer = require ( 'stream-splicer' ) ,
2
4
json = require ( './streams/output/json.js' ) ,
3
5
markdown = require ( './streams/output/markdown.js' ) ,
4
6
htmlOutput = require ( './streams/output/html.js' ) ,
@@ -9,7 +11,7 @@ module.exports = {
9
11
return json ( ) ;
10
12
} ,
11
13
docset : function ( options ) {
12
- return combine ( [ htmlOutput ( {
14
+ return splicer . obj ( [ htmlOutput ( {
13
15
hideSidebar : true ,
14
16
name : options . name ,
15
17
version : options . version
Original file line number Diff line number Diff line change 39
39
"slugg" : " ^0.1.2" ,
40
40
"sort-stream" : " ^1.0.1" ,
41
41
"sqlite3" : " ^3.0.5" ,
42
- "stream-combiner " : " ^0.2 .1" ,
42
+ "stream-splicer " : " ^1.3 .1" ,
43
43
"through" : " ^2.3.6" ,
44
44
"traverse" : " ^0.6.6" ,
45
45
"vinyl" : " ^0.4.6" ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ var through = require('through'),
9
9
path = require ( 'path' ) ,
10
10
Handlebars = require ( 'handlebars' ) ,
11
11
extend = require ( 'extend' ) ,
12
- combine = require ( 'stream-combiner ' ) ,
12
+ splicer = require ( 'stream-splicer ' ) ,
13
13
hierarchy = require ( '../hierarchy.js' ) ,
14
14
highlight = require ( '../highlight.js' ) ,
15
15
inlineLex = require ( 'jsdoc-inline-lex' ) ;
@@ -273,5 +273,5 @@ module.exports = function (opts) {
273
273
} . bind ( this ) ) ;
274
274
} ) ;
275
275
276
- return combine ( [ highlight ( ) , hierarchy ( ) , htmlStream ] ) ;
276
+ return splicer . obj ( [ highlight ( ) , hierarchy ( ) , htmlStream ] ) ;
277
277
} ;
You can’t perform that action at this time.
0 commit comments