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#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
childish-sambino committed Jun 10, 2020
1 parent 9d6fef1 commit fcc13d9
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 @@ -38,7 +38,7 @@
"tmp": "0.1.0"
},
"engines": {
"node": ">=10.0.0"
"node": ">=10.12.0"
},
"files": [
"/bin",
Expand Down

0 comments on commit fcc13d9

Please sign in to comment.