Skip to content

Commit 2eca54e

Browse files
authoredJun 15, 2023
feat: emit event to handle chunk load errors (#12084)
1 parent 8fe6952 commit 2eca54e

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
 

‎packages/vite/src/node/plugins/importAnalysisBuild.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,17 @@ function preload(
132132
})
133133
}
134134
}),
135-
).then(() => baseModule())
135+
)
136+
.then(() => baseModule())
137+
.catch((err) => {
138+
const e = new Event('vite:preloadError', { cancelable: true })
139+
// @ts-expect-error custom payload
140+
e.payload = err
141+
window.dispatchEvent(e)
142+
if (!e.defaultPrevented) {
143+
throw err
144+
}
145+
})
136146
}
137147

138148
/**

‎playground/js-sourcemap/__tests__/js-sourcemap.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe.runIf(isBuild)('build tests', () => {
5454
const map = findAssetFile(/after-preload-dynamic.*\.js\.map/)
5555
expect(formatSourcemapForSnapshot(JSON.parse(map))).toMatchInlineSnapshot(`
5656
{
57-
"mappings": "stBAAAA,EAAA,WAAO,2BAAuB,EAAC,sEAE/B,QAAQ,IAAI,uBAAuB",
57+
"mappings": "41BAAAA,EAAA,WAAO,2BAAuB,EAAC,sEAE/B,QAAQ,IAAI,uBAAuB",
5858
"sources": [
5959
"../../after-preload-dynamic.js",
6060
],

0 commit comments

Comments
 (0)
Please sign in to comment.