Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(plugin): use compiler.webpack when possible #1884

Merged
merged 1 commit into from Oct 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/pluginWebpack5.ts
Expand Up @@ -98,14 +98,16 @@ class VueLoaderPlugin implements Plugin {
static NS = NS

apply(compiler: Compiler) {
// @ts-ignore
const normalModule = compiler.webpack.NormalModule || NormalModule

// add NS marker so that the loader can detect and report missing plugin
compiler.hooks.compilation.tap(id, (compilation) => {
NormalModule.getCompilationHooks(compilation).loader.tap(
id,
(loaderContext: any) => {
normalModule
.getCompilationHooks(compilation)
.loader.tap(id, (loaderContext: any) => {
loaderContext[NS] = true
}
)
})
})

const rules = compiler.options.module!.rules
Expand Down