From 7aebb410bcaddca3c3fbfeec915ce0d57f3331e5 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 5 May 2021 14:27:44 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Dropped=20support=20for=20Node?= =?UTF-8?q?=2010?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs https://github.com/TryGhost/Team/issues/658 - Node 10 become EOL as of April 30th so it's time to drop support - this commit removes the 10.x range from the `node` `engines` block --- ghost/admin/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/package.json b/ghost/admin/package.json index 9439010695..8ad820f4ef 100644 --- a/ghost/admin/package.json +++ b/ghost/admin/package.json @@ -22,7 +22,7 @@ "lint:js": "eslint ." }, "engines": { - "node": "^10.13.0 || ^12.10.0 || ^14.15.0" + "node": "^12.10.0 || ^14.15.0" }, "devDependencies": { "@ember/jquery": "1.1.0",