Skip to content

Commit

Permalink
feat: support ESLint 8.X
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires Node@^12.22.0 || ^14.17.0 || >=16.0.0
  • Loading branch information
MichaelDeBoey committed Oct 12, 2021
1 parent e8e7d3a commit 84ebaca
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-external.yml
Expand Up @@ -12,20 +12,20 @@ jobs:

strategy:
matrix:
node-version: [12.20.0, 14.13.1, 16.0.0]
node-version: [12.22, 12, 14.17, 14, '16.0.0', 16]
fail-fast: false

steps:
- name: Checkout project
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Cache Node dependencies
uses: actions/cache@v2.1.6
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-internal.yml
Expand Up @@ -12,20 +12,20 @@ jobs:

strategy:
matrix:
node-version: [12.20.0, 14.13.1, 16.0.0]
node-version: [12.22, 12, 14.17, 14, '16.0.0', 16]
fail-fast: false

steps:
- name: Checkout project
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Cache Node dependencies
uses: actions/cache@v2.1.6
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Expand Down
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -15,13 +15,13 @@
"url": "https://github.com/standard/standard/issues"
},
"dependencies": {
"eslint": "~7.18.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.0",
"eslint-plugin-react": "~7.26.1",
"eslint": "^8.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.1",
"standard-engine": "^14.0.1"
},
"devDependencies": {
Expand All @@ -34,7 +34,7 @@
"tape": "^5.3.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"homepage": "https://standardjs.com",
"keywords": [
Expand Down

0 comments on commit 84ebaca

Please sign in to comment.