Skip to content

Commit eca68fa

Browse files
authoredMar 29, 2024··
fix(scanner): duplicate modules for same id if glob is used in html-like types (#16305)
1 parent ad246da commit eca68fa

File tree

1 file changed

+2
-4
lines changed
  • packages/vite/src/node/optimizer

1 file changed

+2
-4
lines changed
 

‎packages/vite/src/node/optimizer/scan.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -409,12 +409,10 @@ function esbuildScanPlugin(
409409
// Avoid matching the content of the comment
410410
raw = raw.replace(commentRE, '<!---->')
411411
const isHtml = p.endsWith('.html')
412-
scriptRE.lastIndex = 0
413412
let js = ''
414413
let scriptId = 0
415-
let match: RegExpExecArray | null
416-
while ((match = scriptRE.exec(raw))) {
417-
const [, openTag, content] = match
414+
const matches = raw.matchAll(scriptRE)
415+
for (const [, openTag, content] of matches) {
418416
const typeMatch = openTag.match(typeRE)
419417
const type =
420418
typeMatch && (typeMatch[1] || typeMatch[2] || typeMatch[3])

0 commit comments

Comments
 (0)
Please sign in to comment.