From cbc2a223e9af213f52a9937563204bd03550027d Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 22 Mar 2018 17:07:44 +0100 Subject: [PATCH] fix(app): wrong engines in package.json #2696 Changed required node version to >= 6.x.x for now, so that the installation is not limited to node 6. Also npm >= 3.9.5, since current version is 5.7.1 Closes #2696 --- templates/app/_package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/app/_package.json b/templates/app/_package.json index eb6053a3b..1aef54faa 100644 --- a/templates/app/_package.json +++ b/templates/app/_package.json @@ -210,8 +210,8 @@ "tslint": "^5.7.0"<% } %> }, "engines": { - "node": "^6.2.2", - "npm": "^3.9.5" + "node": ">=6.x.x", + "npm": ">=3.9.5" }, "scripts": { "postinstall": "gulp copy:fonts:dev",