diff options
| author | XhmikosR <[email protected]> | 2019-10-09 11:11:37 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-10-09 11:11:37 +0300 |
| commit | 133e0c8c9a7fdb7bd4d5ebd82ce6d8dc944e0a4f (patch) | |
| tree | 35b466c37b06ba64f26dcd09ff62c7b45fc79dc5 | |
| parent | 577bf8b14d76a864a8d69dbfb03b757fbeb6e241 (diff) | |
| download | bootstrap-133e0c8c9a7fdb7bd4d5ebd82ce6d8dc944e0a4f.tar.xz bootstrap-133e0c8c9a7fdb7bd4d5ebd82ce6d8dc944e0a4f.zip | |
Drop support for Node.js 8. (#29496)
By the time v5 stable will be out, 8 will be EOL (December 2019).
| -rw-r--r-- | .github/workflows/test.yml | 2 | ||||
| -rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5fbe7ff7c..96d74522c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - node: [8, 10, 12] + node: [10, 12] steps: - name: Clone repository diff --git a/package.json b/package.json index 3e9e97af8..3c12d1410 100644 --- a/package.json +++ b/package.json @@ -137,7 +137,7 @@ "vnu-jar": "19.9.4" }, "engines": { - "node": ">=8" + "node": ">=10" }, "files": [ "dist/{css,js}/*.{css,js,map}", |
