From ef337c81981e431218b8d9f67f1dcac85958dca7 Mon Sep 17 00:00:00 2001 From: Jayden Seric Date: Mon, 18 Nov 2019 13:44:09 +1100 Subject: [PATCH] Support Node.js v8.10+. We have to match what ESLint now supports. --- .github/workflows/ci.yml | 2 +- changelog.md | 4 ++++ package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e084947..f99ad1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - node: ['8.5', '8', '10', '12'] + node: ['8', '10', '12'] steps: - uses: actions/checkout@v1 - name: Setup Node.js v${{ matrix.node }} diff --git a/changelog.md b/changelog.md index 074fa80..02f2ec0 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ ## Next +### Major + +- Updated Node.js support from v8.5+ to v8.10+, to match what the [`eslint`](https://npm.im/eslint) dev dependency now supports. This is unlikely to be a breaking change for the published package. + ### Patch - Updated dev dependencies. diff --git a/package.json b/package.json index 66e2a17..df79c3a 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "@babel/core": "^7.6.3", "@babel/preset-env": "^7.6.3", "babel-eslint": "^10.0.3", - "eslint": "^6.5.1", + "eslint": "^6.6.0", "eslint-config-env": "^11.0.0", "eslint-config-prettier": "^6.4.0", "eslint-plugin-import": "^2.18.2",