Skip to content

Commit

Permalink
Merge pull request #87 from glebcha/refactor/node-v12-compatibility
Browse files Browse the repository at this point in the history
Refactor/node v12 compatibility
  • Loading branch information
rafinskipg authored Jan 30, 2020
2 parents 49a00ad + b527965 commit 069c8d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: node_js
node_js:
- "4.4"
- "6.1"
- "7.3.0"
- "12.14.1"

notifications:
email:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"colors": "^1.1.0",
"commander": "^2.8.0",
"debug": "^2.1.3",
"fs-extra": "^0.18.4",
"fs-extra": "^8.1.0",
"lodash": "^3.7.0",
"q": "^1.2.0"
},
Expand Down
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 069c8d3

Please sign in to comment.