File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ import {transform} from './transform.js'
42
42
43
43
// This pipeline ensures each of the pipes always runs: even if the read pipe
44
44
// fails, queue and write run.
45
+ /** @type {Pipeline } */
45
46
export const filePipeline = trough ( )
46
47
. use ( chunk ( trough ( ) . use ( configure ) . use ( read ) . use ( parse ) . use ( transform ) ) )
47
48
. use ( chunk ( trough ( ) . use ( queue ) ) )
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @import {Pipeline} from 'trough'
3
+ */
4
+
1
5
import { trough } from 'trough'
2
6
import { configure } from './configure.js'
3
7
import { fileSystem } from './file-system.js'
4
8
import { log } from './log.js'
5
9
import { stdin } from './stdin.js'
6
10
import { transform } from './transform.js'
7
11
12
+ /** @type {Pipeline } */
8
13
export const fileSetPipeline = trough ( )
9
14
. use ( configure )
10
15
. use ( fileSystem )
You can’t perform that action at this time.
0 commit comments