From 829c75a866c5adb24af5eac865bb2a45186fd829 Mon Sep 17 00:00:00 2001 From: Sergey Rubanov Date: Wed, 2 Aug 2017 21:30:13 +0300 Subject: [PATCH] Development Only: drop Node 4-5 and npm 2 (#6037) [skip ci] Node versions 4 and 5 are obsolete. Version of npm bundled in Node 6 is 3 so npm 2 could be dropped as well. --- CONTRIBUTING.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cf9a070e2c..082f1008c0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,7 +40,7 @@ Feel free to check out the `#discussion`/`#development` channels on our [Slack]( **Note:** Versions `< 5.1.10` can't be built. -Babel is built for Node.js 4 and up but we develop using Node.js 6. Make sure you are on npm 3. +Babel is built for Node.js 4 and up but we develop using Node.js 6/8 and yarn. You can check this with `node -v` and `npm -v`. diff --git a/package.json b/package.json index ecdaa73f8c..a3097a3246 100644 --- a/package.json +++ b/package.json @@ -50,8 +50,8 @@ "uglify-js": "^2.4.16" }, "engines": { - "node": ">= 4.x <= 8.x", - "npm": ">= 2.x <= 5.x" + "node": ">= 6.x <= 8.x", + "npm": ">= 3.x <= 5.x" }, "nyc": { "all": true,