Skip to content

Commit

Permalink
chore: fix typo (#2010)
Browse files Browse the repository at this point in the history
  • Loading branch information
miixc committed Oct 28, 2022
1 parent 9e4249a commit 0a02377
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pluginWebpack4.ts
Expand Up @@ -61,7 +61,7 @@ class VueLoaderPlugin implements webpack.Plugin {
const vueLoaderOptions = (vueLoaderUse.options =
vueLoaderUse.options || {}) as VueLoaderOptions

// for each user rule (expect the vue rule), create a cloned rule
// for each user rule (except the vue rule), create a cloned rule
// that targets the corresponding language blocks in *.vue files.
const clonedRules = rules.filter((r) => r !== vueRule).map(cloneRule)

Expand Down
2 changes: 1 addition & 1 deletion src/pluginWebpack5.ts
Expand Up @@ -165,7 +165,7 @@ class VueLoaderPlugin implements Plugin {
const vueLoaderOptions = (vueLoaderUse.options =
vueLoaderUse.options || {}) as VueLoaderOptions

// for each user rule (expect the vue rule), create a cloned rule
// for each user rule (except the vue rule), create a cloned rule
// that targets the corresponding language blocks in *.vue files.
const refs = new Map()
const clonedRules = rules
Expand Down

0 comments on commit 0a02377

Please sign in to comment.