From f79bb087f9211c3ea19d63c1dcfd758d6dbad095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20L=C3=BCnborg?= Date: Thu, 29 Oct 2020 09:11:28 +0100 Subject: [PATCH] fix: ensure new webpack5 generator property in rules passes ruleset checks (#1753) close #1729 Co-authored-by: Thorsten Luenborg --- lib/plugin-webpack5.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/plugin-webpack5.js b/lib/plugin-webpack5.js index 431fdf06f..ea0271cc2 100644 --- a/lib/plugin-webpack5.js +++ b/lib/plugin-webpack5.js @@ -20,6 +20,7 @@ const ruleSetCompiler = new RuleSetCompiler([ new BasicEffectRulePlugin('sideEffects'), new BasicEffectRulePlugin('parser'), new BasicEffectRulePlugin('resolve'), + new BasicEffectRulePlugin('generator'), new UseEffectRulePlugin() ])