Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclaudiahdz <cghr1990@gmail.com>2020-02-04 21:28:32 +0300
committerisaacs <i@izs.me>2020-05-08 04:08:13 +0300
commit8f6b6204f9cdbfc8e2a27a1c3b3f1591ac7e0d60 (patch)
treef889b8f64563d7be12b3d849f46a86ca73bb84c9
parentabdf52879fcf0e0f534ad977931f6935f5d1dce3 (diff)
feat: drop support for node v6 and v8
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.travis.yml3
-rw-r--r--package.json2
3 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index acffa4fbb..7b4754dfc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node-version: [6.x, 8.x, 10.x, 12.x]
+ node-version: [10.x, 12.x, 14.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
diff --git a/.travis.yml b/.travis.yml
index 9fb0d5113..cf83bdd5f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,10 +5,9 @@ os:
- windows
node_js:
+ - 13
- 12
- 10
- - 8
- - 6
env: "DEPLOY_VERSION=testing"
diff --git a/package.json b/package.json
index bfbed9ea0..ca5afc35c 100644
--- a/package.json
+++ b/package.json
@@ -309,6 +309,6 @@
},
"license": "Artistic-2.0",
"engines": {
- "node": "6 >=6.2.0 || 8 || >=9.3.0"
+ "node": ">=10"
}
}