File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- node : [12, 14, 16]
11
+ node : [14, 16]
12
12
# windows support not quite ready: os: [ubuntu-latest, windows-latest]
13
13
os : [ubuntu-latest]
14
14
Original file line number Diff line number Diff line change 3
3
import { existsSync , readFileSync } from 'fs'
4
4
import { join } from 'path'
5
5
import process from 'process'
6
- import stream from 'stream'
6
+ import { pipeline as _pipeline } from 'stream'
7
+ import { promisify } from 'util'
7
8
import split2 from 'split2'
8
9
import pkgtoId from 'pkg-to-id'
9
10
import commitStream from 'commit-stream'
@@ -13,7 +14,7 @@ import minimist from 'minimist'
13
14
import { processCommits } from './process-commits.js'
14
15
import { isReleaseCommit } from './groups.js'
15
16
16
- const { pipeline } = stream . promises
17
+ const pipeline = promisify ( _pipeline )
17
18
const debug = _debug ( 'changelog-maker' )
18
19
const argv = minimist ( process . argv . slice ( 2 ) )
19
20
const help = argv . h || argv . help
You can’t perform that action at this time.
0 commit comments