From 7092b5f55bf7f8c7820cd1051c670ec623934f45 Mon Sep 17 00:00:00 2001 From: Geraint White Date: Fri, 9 Oct 2020 16:33:01 +0100 Subject: [PATCH] Set minimum node version to 10.12.0 The recursive option was added to `fs.mkdirSync` in node 10.12.0. It's used in https://github.com/alibaba/anyproxy/pull/562 for creating the temp directory. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bf3deeb9e..7d6e76bf4 100644 --- a/package.json +++ b/package.json @@ -109,6 +109,6 @@ "author": "ottomao@gmail.com", "license": "Apache-2.0", "engines": { - "node": ">=6.0.0" + "node": ">=10.12.0" } }