diff --git a/CHANGELOG.md b/CHANGELOG.md index c123529..e873fad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ 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. +## [4.0.0](https://github.com/webpack-contrib/eslint-webpack-plugin/compare/v3.2.0...v4.0.0) (2023-02-03) + + +### ⚠ BREAKING CHANGES + +* drop node v12 and eslint v7 (#159) + +### Bug Fixes + +* 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) + + +* 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)) + ## [3.2.0](https://github.com/webpack-contrib/eslint-webpack-plugin/compare/v3.1.1...v3.2.0) (2022-06-23) diff --git a/package-lock.json b/package-lock.json index c697639..379c7c0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "eslint-webpack-plugin", - "version": "3.2.0", + "version": "4.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "eslint-webpack-plugin", - "version": "3.2.0", + "version": "4.0.0", "license": "MIT", "dependencies": { "@types/eslint": "^8.4.10", diff --git a/package.json b/package.json index 606b0f9..d9232aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-webpack-plugin", - "version": "3.2.0", + "version": "4.0.0", "description": "A ESLint plugin for webpack", "license": "MIT", "repository": "webpack-contrib/eslint-webpack-plugin", diff --git a/src/index.js b/src/index.js index 087575a..ba71356 100644 --- a/src/index.js +++ b/src/index.js @@ -86,9 +86,7 @@ class ESLintWebpackPlugin { */ async run(compiler, options, wanted, exclude) { // @ts-ignore - const isCompilerHooked = compiler.hooks.compilation.taps.find( - ({ name }) => name === this.key - ); + const isCompilerHooked = compiler.hooks.compilation.taps.find(({ name }) => name === this.key); if (isCompilerHooked) return;