### Version 16.3.0 ### Related link [https://github.com/webpack/webpack/commit/7f22e4721f2db6c374c0ec1ea8b9c295ac81f494](https://github.com/webpack/webpack/commit/7f22e4721f2db6c374c0ec1ea8b9c295ac81f494) ### Steps to reproduce When trying to run app with vue-loader, it breaks with unable to find DescriptionDataMatcherRulePlugin in webpack5, as it has been updated. ### What is expected? ``` const ruleSetCompiler = new RuleSetCompiler([ ... new ObjectMatcherRulePlugin(), ... ]) ``` ### What is actually happening? ``` const ruleSetCompiler = new RuleSetCompiler([ ... new DescriptionDataMatcherRulePlugin(), ... ]) ``` --- Webpack 5 has updated the rule set. <!-- generated by vue-issues. DO NOT REMOVE -->