Skip to content

Commit

Permalink
chore(release): 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Feb 3, 2023
1 parent 92f25ec commit 6713b0e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 1 addition & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 6713b0e

Please sign in to comment.