Skip to content

Commit 0f582bf

Browse files
sapphi-redbluwy
authored andcommitted
fix(glob): trigger HMR for glob in a package (#14117)
1 parent cdf2632 commit 0f582bf

File tree

8 files changed

+58
-3
lines changed

8 files changed

+58
-3
lines changed

packages/vite/src/node/plugins/importMetaGlob.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ export function getAffectedGlobModules(
5858
(!affirmed.length || affirmed.some((glob) => isMatch(file, glob))) &&
5959
(!negated.length || negated.every((glob) => isMatch(file, glob))),
6060
)
61-
)
62-
modules.push(...(server.moduleGraph.getModulesByFile(id) || []))
61+
) {
62+
const mod = server.moduleGraph.getModuleById(id)
63+
if (mod) modules.push(mod)
64+
}
6365
}
6466
modules.forEach((i) => {
6567
if (i?.file) server.moduleGraph.onFileChange(i.file)

playground/glob-import/__tests__/glob-import.spec.ts

+23
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
page,
1212
removeFile,
1313
untilBrowserLogAfter,
14+
untilUpdated,
1415
viteTestUrl,
1516
withRetry,
1617
} from '~utils'
@@ -131,6 +132,12 @@ test('unassigned import processes', async () => {
131132
)
132133
})
133134

135+
test('import glob in package', async () => {
136+
expect(await page.textContent('.in-package')).toBe(
137+
JSON.stringify(['/pkg-pages/foo.js']),
138+
)
139+
})
140+
134141
if (!isBuild) {
135142
test('hmr for adding/removing files', async () => {
136143
const resultElement = page.locator('.result')
@@ -190,6 +197,22 @@ if (!isBuild) {
190197
response = await request.catch(() => ({ status: () => -1 }))
191198
expect(response.status()).toBe(-1)
192199
})
200+
201+
test('hmr for adding/removing files in package', async () => {
202+
const resultElement = page.locator('.in-package')
203+
204+
addFile('pkg-pages/bar.js', '// empty')
205+
await untilUpdated(
206+
() => resultElement.textContent(),
207+
JSON.stringify(['/pkg-pages/foo.js', '/pkg-pages/bar.js'].sort()),
208+
)
209+
210+
removeFile('pkg-pages/bar.js')
211+
await untilUpdated(
212+
() => resultElement.textContent(),
213+
JSON.stringify(['/pkg-pages/foo.js']),
214+
)
215+
})
193216
}
194217

195218
test('tree-shake eager css', async () => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export const g = import.meta.glob('/pkg-pages/*.js')
2+
document.querySelector('.in-package').textContent = JSON.stringify(
3+
Object.keys(g).sort(),
4+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "@vitejs/test-import-meta-glob-pkg",
3+
"type": "module",
4+
"main": "./index.js"
5+
}

playground/glob-import/index.html

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ <h2>Escape alias glob</h2>
2323
<pre class="escape-alias"></pre>
2424
<h2>Sub imports</h2>
2525
<pre class="sub-imports"></pre>
26+
<h2>In package</h2>
27+
<pre class="in-package"></pre>
2628

2729
<script type="module" src="./dir/index.js"></script>
2830
<script type="module">
@@ -151,6 +153,10 @@ <h2>Sub imports</h2>
151153
.join(' ')
152154
</script>
153155

156+
<script type="module">
157+
import '@vitejs/test-import-meta-glob-pkg'
158+
</script>
159+
154160
<script type="module">
155161
console.log('Ran scripts')
156162
</script>

playground/glob-import/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@
1111
"build": "vite build",
1212
"debug": "node --inspect-brk ../../packages/vite/bin/vite",
1313
"preview": "vite preview"
14+
},
15+
"dependencies": {
16+
"@vitejs/test-import-meta-glob-pkg": "file:./import-meta-glob-pkg"
1417
}
1518
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// empty

pnpm-lock.yaml

+12-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)