Skip to content

Commit

Permalink
feat: Update ESLint version requirement (#272)
Browse files Browse the repository at this point in the history
* feat: Update ESLint version requirement

BREAKING CHANGE:

Update the ESLint peer dependency requirement to `^8.56.0`. This means we are dropping support for ESLint 8 versions prior to `8.56.0`.

* chore: specify eslint version in ci only v8
  • Loading branch information
wakamsha authored May 22, 2024
1 parent 44d7fe3 commit e2e952a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test:
strategy:
matrix:
eslint: [7, 8]
eslint: [8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"semantic-release": "23.0.8",
"typescript": ">= 4.2.4 || ^5.0.0"
},
"peerDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"eslint": "^8.56.0",
"typescript": ">= 4.2.4 || ^5.0.0"
},
"peerDependenciesMeta": {
Expand Down

0 comments on commit e2e952a

Please sign in to comment.