Skip to content

Commit 1dbc7cc

Browse files
authoredMay 27, 2022
fix(optimizer): transpile before calling transformGlobImport (#8343)
1 parent de9f556 commit 1dbc7cc

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed
 

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

+13-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import path from 'path'
33
import { performance } from 'perf_hooks'
44
import glob from 'fast-glob'
55
import type { Loader, OnLoadResult, Plugin } from 'esbuild'
6-
import { build } from 'esbuild'
6+
import { build, transform } from 'esbuild'
77
import colors from 'picocolors'
88
import type { ResolvedConfig } from '..'
99
import {
@@ -299,17 +299,26 @@ function esbuildScanPlugin(
299299

300300
const key = `${path}?id=${scriptId++}`
301301
if (contents.includes('import.meta.glob')) {
302+
let transpiledContents
303+
// transpile because `transformGlobImport` only expects js
304+
if (loader !== 'js') {
305+
transpiledContents = (await transform(contents, { loader }))
306+
.code
307+
} else {
308+
transpiledContents = contents
309+
}
310+
302311
scripts[key] = {
303-
loader: 'js',
312+
loader: 'js', // since it is transpiled
304313
contents:
305314
(
306315
await transformGlobImport(
307-
contents,
316+
transpiledContents,
308317
path,
309318
config.root,
310319
resolve
311320
)
312-
)?.s.toString() || contents
321+
)?.s.toString() || transpiledContents
313322
}
314323
} else {
315324
scripts[key] = {

‎playground/optimize-deps/index.astro

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script>
22
type Foo = 'bar';
33
console.log("stuff");
4+
5+
import.meta.glob('./dedupe.*', { eager: true })
46
</script>

0 commit comments

Comments
 (0)
Please sign in to comment.