Skip to content

Commit

Permalink
fix: increase Node minimum version requirement to 10.12.0 (twilio#91)
Browse files Browse the repository at this point in the history
Relates to twilio/twilio-cli-core#90

[mkdirSync](https://nodejs.org/api/fs.html#fs_fs_mkdirsync_path_options) is used with the recursive option which wasn't added until 10.12.0 so we should enforce this as the minimum version.
  • Loading branch information
Sam Harrison committed Jul 2, 2020
1 parent c84b125 commit ce196d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"tmp": "^0.1.0"
},
"engines": {
"node": ">=10.0.0"
"node": ">=10.12.0"
},
"files": [
"/bin",
Expand Down

0 comments on commit ce196d0

Please sign in to comment.