Skip to content

Commit

Permalink
feat!: drop Node.js 8 support (#1664)
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah committed Jan 11, 2021
1 parent 28fe46e commit 2b53f4a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [8.x, 12.x, 14.x]
node-version: [10.x, 12.x, 14.x]
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -42,7 +42,7 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s

## Installation

Netlify CLI requires [Node.js](https://nodejs.org) version 8 or above. To install, run the following command from any directory in your terminal:
Netlify CLI requires [Node.js](https://nodejs.org) version 10 or above. To install, run the following command from any directory in your terminal:

```bash
npm install netlify-cli -g
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"Bret Comnes <bcomnes@gmail.com> (https://bret.io)"
],
"engines": {
"node": ">=8.17.0"
"node": ">=10.18.0"
},
"files": [
"/bin",
Expand Down
28 changes: 0 additions & 28 deletions renovate.json5
Expand Up @@ -3,32 +3,4 @@
ignorePresets: [':prHourlyLimit2'],
semanticCommits: true,
masterIssue: true,
packageRules: [
{
// Those cannot be upgraded to a major version until we drop support for Node 8
packageNames: [
'@octokit/rest',
'ava',
'boxen',
'chalk',
'concordance',
'cosmiconfig',
'del',
'dot-prop',
'execa',
'find-up',
'globby',
'locate-path',
'log-symbols',
'npm-packlist',
'ora',
'wrap-ansi',
'update-notifier',
'p-timeout',
],
major: {
enabled: false,
},
},
],
}

0 comments on commit 2b53f4a

Please sign in to comment.