Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Continue looking for vue rule if not the first rule encountered
I believe "continue" was intended here instead of "break".  Unless there is a good reason the vue rule should be the first non-enforce rule.

https://githubmemory.com/repo/vuejs/vue-loader/issues/1826
  • Loading branch information
rfox12 authored Nov 3, 2021
commit 385ffa0d3896b0f439f36800a21c5d540ef8f5c0
2 changes: 1 addition & 1 deletion lib/plugin-webpack5.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class VueLoaderPlugin {
)
}
rawVueRules = rawRule
break
continue
}
}
if (!vueRules.length) {
Expand Down