Skip to content

Commit

Permalink
fix(app): wrong engines in package.json #2696
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Unknown committed Mar 22, 2018
1 parent cd7ca7b commit cbc2a22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/app/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit cbc2a22

Please sign in to comment.