From ce196d0316c36264f8be216cda67205731f8c543 Mon Sep 17 00:00:00 2001 From: Sam Harrison Date: Thu, 2 Jul 2020 08:56:26 -0500 Subject: [PATCH] fix: increase Node minimum version requirement to 10.12.0 (#91) Relates to https://github.com/twilio/twilio-cli-core/issues/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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7bc36e2d1..08053d46f 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "tmp": "^0.1.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=10.12.0" }, "files": [ "/bin",