Skip to content

Commit

Permalink
refactor: replaced deprecated createOutputStream method with createWr…
Browse files Browse the repository at this point in the history
…iteStream
  • Loading branch information
glebcha committed Jan 30, 2020
1 parent 99905e5 commit f27a64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/lib/write-change-log.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function writeChangelog(commits) {
.then(function(template){

if (module.options.file) {
stream = fse.createOutputStream(module.options.file);
stream = fse.createWriteStream(module.options.file);
} else {
stream = process.stdout;
}
Expand Down

0 comments on commit f27a64c

Please sign in to comment.