File tree 2 files changed +15
-4
lines changed
packages/vite/src/node/optimizer
2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import path from 'path'
3
3
import { performance } from 'perf_hooks'
4
4
import glob from 'fast-glob'
5
5
import type { Loader , OnLoadResult , Plugin } from 'esbuild'
6
- import { build } from 'esbuild'
6
+ import { build , transform } from 'esbuild'
7
7
import colors from 'picocolors'
8
8
import type { ResolvedConfig } from '..'
9
9
import {
@@ -299,17 +299,26 @@ function esbuildScanPlugin(
299
299
300
300
const key = `${ path } ?id=${ scriptId ++ } `
301
301
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
+
302
311
scripts [ key ] = {
303
- loader : 'js' ,
312
+ loader : 'js' , // since it is transpiled
304
313
contents :
305
314
(
306
315
await transformGlobImport (
307
- contents ,
316
+ transpiledContents ,
308
317
path ,
309
318
config . root ,
310
319
resolve
311
320
)
312
- ) ?. s . toString ( ) || contents
321
+ ) ?. s . toString ( ) || transpiledContents
313
322
}
314
323
} else {
315
324
scripts [ key ] = {
Original file line number Diff line number Diff line change 1
1
<script >
2
2
type Foo = 'bar';
3
3
console.log("stuff");
4
+
5
+ import.meta.glob('./dedupe.*', { eager: true })
4
6
</script >
You can’t perform that action at this time.
0 commit comments