Skip to content

Commit 6713b0e

Browse files
chore(release): 4.0.0
1 parent 92f25ec commit 6713b0e

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [4.0.0](https://github.com/webpack-contrib/eslint-webpack-plugin/compare/v3.2.0...v4.0.0) (2023-02-03)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* drop node v12 and eslint v7 (#159)
11+
12+
### Bug Fixes
13+
14+
* lint modules that are cached with webpack's filesystem cache ([#197](https://github.com/webpack-contrib/eslint-webpack-plugin/issues/197)) ([92f25ec](https://github.com/webpack-contrib/eslint-webpack-plugin/commit/92f25ecf5f92d72bab4c80dac363a1c632e3500f)), closes [#130](https://github.com/webpack-contrib/eslint-webpack-plugin/issues/130)
15+
16+
17+
* drop node v12 and eslint v7 ([#159](https://github.com/webpack-contrib/eslint-webpack-plugin/issues/159)) ([1edd3c1](https://github.com/webpack-contrib/eslint-webpack-plugin/commit/1edd3c1ab63ba864768d812401ce500318548e2d))
18+
519
## [3.2.0](https://github.com/webpack-contrib/eslint-webpack-plugin/compare/v3.1.1...v3.2.0) (2022-06-23)
620

721

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-webpack-plugin",
3-
"version": "3.2.0",
3+
"version": "4.0.0",
44
"description": "A ESLint plugin for webpack",
55
"license": "MIT",
66
"repository": "webpack-contrib/eslint-webpack-plugin",

src/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,7 @@ class ESLintWebpackPlugin {
8686
*/
8787
async run(compiler, options, wanted, exclude) {
8888
// @ts-ignore
89-
const isCompilerHooked = compiler.hooks.compilation.taps.find(
90-
({ name }) => name === this.key
91-
);
89+
const isCompilerHooked = compiler.hooks.compilation.taps.find(({ name }) => name === this.key);
9290

9391
if (isCompilerHooked) return;
9492

0 commit comments

Comments
 (0)