Skip to content

Commit fed1cd6

Browse files
authoredJan 8, 2023
fix: always inline assets and modules with special Vite queries (#2617)
* fix: always inline assets and modules with special queries * chore: cleanup * refactor: cleanup
1 parent 9eeee0c commit fed1cd6

File tree

4 files changed

+82
-6
lines changed

4 files changed

+82
-6
lines changed
 

‎packages/vite-node/src/externalize.ts

+39
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,51 @@ import { isNodeBuiltin, isValidNodeImport } from 'mlly'
33
import type { DepsHandlingOptions } from './types'
44
import { slash } from './utils'
55

6+
const KNOWN_ASSET_TYPES = [
7+
// images
8+
'png',
9+
'jpe?g',
10+
'jfif',
11+
'pjpeg',
12+
'pjp',
13+
'gif',
14+
'svg',
15+
'ico',
16+
'webp',
17+
'avif',
18+
19+
// media
20+
'mp4',
21+
'webm',
22+
'ogg',
23+
'mp3',
24+
'wav',
25+
'flac',
26+
'aac',
27+
28+
// fonts
29+
'woff2?',
30+
'eot',
31+
'ttf',
32+
'otf',
33+
34+
// other
35+
'webmanifest',
36+
'pdf',
37+
'txt',
38+
]
39+
640
const ESM_EXT_RE = /\.(es|esm|esm-browser|esm-bundler|es6|module)\.js$/
741
const ESM_FOLDER_RE = /\/(es|esm)\/(.*\.js)$/
842

943
const defaultInline = [
1044
/virtual:/,
1145
/\.[mc]?ts$/,
46+
47+
// special Vite query strings
48+
/[?&](init|raw|url|inline)\b/,
49+
// Vite returns a string for assets imports, even if it's inside "node_modules"
50+
new RegExp(`\\.(${KNOWN_ASSET_TYPES.join('|')})$`),
1251
]
1352

1453
const depsExternal = [

‎packages/vite-node/src/utils.ts

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ export function slash(str: string) {
99
return str.replace(/\\/g, '/')
1010
}
1111

12-
export function mergeSlashes(str: string) {
13-
return str.replace(/\/\//g, '/')
14-
}
15-
1612
export const VALID_ID_PREFIX = '/@id/'
1713

1814
export function normalizeRequestId(id: string, base?: string): string {

‎packages/vitest/src/node/plugins/cssEnabler.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export function CSSEnablerPlugin(ctx: Vitest): VitePlugin[] {
7070
return { code }
7171
}
7272

73-
return { code: '' }
73+
return { code: 'export default ""' }
7474
},
7575
},
7676
]

‎test/core/test/imports.test.ts

+42-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { expect, test } from 'vitest'
1+
import { mkdir, writeFile } from 'node:fs/promises'
2+
import { resolve } from 'pathe'
3+
import { describe, expect, test } from 'vitest'
24
import { dynamicRelativeImport } from '../src/relative-import'
35

46
test('dynamic relative import works', async () => {
@@ -67,3 +69,42 @@ test('can import @vite/client', async () => {
6769
await expect(import(name)).resolves.not.toThrow()
6870
await expect(import(`/${name}`)).resolves.not.toThrow()
6971
})
72+
73+
describe('importing special files from node_modules', async () => {
74+
const dir = resolve(__dirname, '../src/node_modules')
75+
const wasm = resolve(dir, 'file.wasm')
76+
const css = resolve(dir, 'file.css')
77+
const mp3 = resolve(dir, 'file.mp3')
78+
await mkdir(dir, { recursive: true })
79+
await Promise.all([
80+
writeFile(wasm, '(module)'),
81+
writeFile(css, '.foo { color: red; }'),
82+
writeFile(mp3, ''),
83+
])
84+
const importModule = (path: string) => import(path)
85+
86+
test('importing wasm with ?url query', async () => {
87+
const mod = await importModule('../src/node_modules/file.wasm?url')
88+
expect(mod.default).toBe('/src/node_modules/file.wasm')
89+
})
90+
91+
test('importing wasm with ?raw query', async () => {
92+
const mod = await importModule('../src/node_modules/file.wasm?raw')
93+
expect(mod.default).toBe('(module)')
94+
})
95+
96+
test('importing wasm with ?init query', async () => {
97+
const mod = await importModule('../src/node_modules/file.wasm?init')
98+
expect(mod.default).toBeTypeOf('function')
99+
})
100+
101+
test('importing css with ?inline query', async () => {
102+
const mod = await importModule('../src/node_modules/file.css?inline')
103+
expect(mod.default).toBeTypeOf('string')
104+
})
105+
106+
test('importing asset returns a string', async () => {
107+
const mod = await importModule('../src/node_modules/file.mp3')
108+
expect(mod.default).toBe('/src/node_modules/file.mp3')
109+
})
110+
})

0 commit comments

Comments
 (0)
Please sign in to comment.