Skip to content

Commit e961b31

Browse files
authoredAug 9, 2024··
fix: build.modulePreload.resolveDependencies is optimizable (#16083)
1 parent 1c9df61 commit e961b31

File tree

2 files changed

+31
-40
lines changed

2 files changed

+31
-40
lines changed
 

‎docs/config/build-options.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,13 @@ type ResolveModulePreloadDependenciesFn = (
4141
url: string,
4242
deps: string[],
4343
context: {
44-
importer: string
44+
hostId: string
45+
hostType: 'html' | 'js'
4546
},
4647
) => string[]
4748
```
4849
49-
The `resolveDependencies` function will be called for each dynamic import with a list of the chunks it depends on, and it will also be called for each chunk imported in entry HTML files. A new dependencies array can be returned with these filtered or more dependencies injected, and their paths modified. The `deps` paths are relative to the `build.outDir`. Returning a relative path to the `hostId` for `hostType === 'js'` is allowed, in which case `new URL(dep, import.meta.url)` is used to get an absolute path when injecting this module preload in the HTML head.
50+
The `resolveDependencies` function will be called for each dynamic import with a list of the chunks it depends on, and it will also be called for each chunk imported in entry HTML files. A new dependencies array can be returned with these filtered or more dependencies injected, and their paths modified. The `deps` paths are relative to the `build.outDir`. The return value should be a relative path to the `build.outDir`.
5051
5152
```js twoslash
5253
/** @type {import('vite').UserConfig} */

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

+28-38
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,9 @@ export function buildImportAnalysisPlugin(config: ResolvedConfig): Plugin {
166166
const isWorker = config.isWorker
167167
const insertPreload = !(ssr || !!config.build.lib || isWorker)
168168

169-
const resolveModulePreloadDependencies =
170-
config.build.modulePreload && config.build.modulePreload.resolveDependencies
171169
const renderBuiltUrl = config.experimental.renderBuiltUrl
172-
const customModulePreloadPaths = !!(
173-
resolveModulePreloadDependencies || renderBuiltUrl
174-
)
175170
const isRelativeBase = config.base === './' || config.base === ''
176-
const optimizeModulePreloadRelativePaths =
177-
isRelativeBase && !customModulePreloadPaths
171+
const optimizeModulePreloadRelativePaths = isRelativeBase && !renderBuiltUrl
178172

179173
const { modulePreload } = config.build
180174
const scriptRel =
@@ -189,10 +183,10 @@ export function buildImportAnalysisPlugin(config: ResolvedConfig): Plugin {
189183
// This is maintained to keep backwards compatibility as some users developed plugins
190184
// using regex over this list to workaround the fact that module preload wasn't
191185
// configurable.
192-
const assetsURL = customModulePreloadPaths
193-
? // If `experimental.renderBuiltUrl` or `build.modulePreload.resolveDependencies` are used
194-
// the dependencies are already resolved. To avoid the need for `new URL(dep, import.meta.url)`
195-
// a helper `__vitePreloadRelativeDep` is used to resolve from relative paths which can be minimized.
186+
const assetsURL = renderBuiltUrl
187+
? // If `experimental.renderBuiltUrl` is used, the dependencies are already resolved.
188+
// To avoid the need for `new URL(dep, import.meta.url)`, a helper `__vitePreloadRelativeDep` is
189+
// used to resolve from relative paths which can be minimized.
196190
`function(dep, importerUrl) { return dep[0] === '.' ? new URL(dep, importerUrl).href : dep }`
197191
: optimizeModulePreloadRelativePaths
198192
? // If there isn't custom resolvers affecting the deps list, deps in the list are relative
@@ -353,7 +347,7 @@ export function buildImportAnalysisPlugin(config: ResolvedConfig): Plugin {
353347
str().appendRight(
354348
expEnd,
355349
`,${isModernFlag}?${preloadMarker}:void 0${
356-
optimizeModulePreloadRelativePaths || customModulePreloadPaths
350+
optimizeModulePreloadRelativePaths || renderBuiltUrl
357351
? ',import.meta.url'
358352
: ''
359353
})`,
@@ -580,7 +574,7 @@ export function buildImportAnalysisPlugin(config: ResolvedConfig): Plugin {
580574

581575
if (markerStartPos > 0) {
582576
// the dep list includes the main chunk, so only need to reload when there are actual other deps.
583-
const depsArray =
577+
let depsArray =
584578
deps.size > 1 ||
585579
// main chunk is removed
586580
(hasRemovedPureCssChunk && deps.size > 0)
@@ -591,33 +585,29 @@ export function buildImportAnalysisPlugin(config: ResolvedConfig): Plugin {
591585
: [...deps]
592586
: []
593587

594-
let renderedDeps: number[]
595-
if (normalizedFile && customModulePreloadPaths) {
596-
const { modulePreload } = config.build
597-
const resolveDependencies = modulePreload
598-
? modulePreload.resolveDependencies
599-
: undefined
600-
let resolvedDeps: string[]
601-
if (resolveDependencies) {
602-
// We can't let the user remove css deps as these aren't really preloads, they are just using
603-
// the same mechanism as module preloads for this chunk
604-
const cssDeps: string[] = []
605-
const otherDeps: string[] = []
606-
for (const dep of depsArray) {
607-
;(dep.endsWith('.css') ? cssDeps : otherDeps).push(dep)
608-
}
609-
resolvedDeps = [
610-
...resolveDependencies(normalizedFile, otherDeps, {
611-
hostId: file,
612-
hostType: 'js',
613-
}),
614-
...cssDeps,
615-
]
616-
} else {
617-
resolvedDeps = depsArray
588+
const resolveDependencies = modulePreload
589+
? modulePreload.resolveDependencies
590+
: undefined
591+
if (resolveDependencies && normalizedFile) {
592+
// We can't let the user remove css deps as these aren't really preloads, they are just using
593+
// the same mechanism as module preloads for this chunk
594+
const cssDeps: string[] = []
595+
const otherDeps: string[] = []
596+
for (const dep of depsArray) {
597+
;(dep.endsWith('.css') ? cssDeps : otherDeps).push(dep)
618598
}
599+
depsArray = [
600+
...resolveDependencies(normalizedFile, otherDeps, {
601+
hostId: file,
602+
hostType: 'js',
603+
}),
604+
...cssDeps,
605+
]
606+
}
619607

620-
renderedDeps = resolvedDeps.map((dep) => {
608+
let renderedDeps: number[]
609+
if (renderBuiltUrl) {
610+
renderedDeps = depsArray.map((dep) => {
621611
const replacement = toOutputFilePathInJS(
622612
dep,
623613
'asset',

0 commit comments

Comments
 (0)
Please sign in to comment.