Skip to content

Commit

Permalink
Add explicit debug dependency (fixes #32)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Apr 17, 2024
1 parent edf0749 commit 36267c8
Show file tree
Hide file tree
Showing 5 changed files with 605 additions and 608 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## 2.0.3

- Add explicit `debug` dependency
- Change ESLint peer dependency range to `^8.43 || ^9` to match the changes made to support flat config in 2.0.2

## 2.0.2

- Support ESLint flat config (fixes [#23](https://github.com/nabla/vite-plugin-eslint/issues/23))
Expand Down
9 changes: 5 additions & 4 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "@nabla/vite-plugin-eslint",
"description": "Plugs ESLint into Vite dev server",
"version": "2.0.2",
"version": "2.0.3",
"license": "MIT",
"author": "Arnaud Barré (https://github.com/ArnaudBarre)",
"type": "module",
Expand Down Expand Up @@ -29,15 +29,16 @@
},
"dependencies": {
"@types/eslint": "*",
"chalk": "^4"
"chalk": "^4",
"debug": "^4"
},
"peerDependencies": {
"eslint": "*",
"eslint": "^8.43 || ^9",
"vite": "^4 || ^5"
},
"devDependencies": {
"eslint": "^8.54.0",
"prettier": "3.0.3",
"vite": "^5.0.0"
"vite": "^5.2.9"
}
}
4 changes: 2 additions & 2 deletions playground/package.json
Expand Up @@ -8,7 +8,7 @@
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^2.0.2",
"eslint": "^8.54.0",
"vite": "^5.0.0"
"eslint": "^9.0.0",
"vite": "^5.2.9"
}
}

0 comments on commit 36267c8

Please sign in to comment.