-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perf: non-blocking write of optimized dep files #12603
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
feb322a
perf: non-blocking write of optimized dep files
patak-dev b111f5f
perf: avoid expensive lookup
patak-dev b995b68
refactor: write esbuild output with buffer
bluwy b7bde12
chore: setTimeout for commitFiles
patak-dev cc9175f
refactor: use function
bluwy f4c7de5
chore: handle lock before writing
bluwy c6c82ac
refactor: improve code
bluwy 0ec95e4
chore: fix test
bluwy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -341,10 +341,9 @@ export async function createServer( | |
): Promise<ViteDevServer> { | ||
const config = await resolveConfig(inlineConfig, 'serve') | ||
|
||
// start optimizer in the background | ||
let depsOptimizerReady: Promise<void> | undefined | ||
if (isDepsOptimizerEnabled(config, false)) { | ||
depsOptimizerReady = initDepsOptimizer(config) | ||
// start optimizer in the background, we still need to await the setup | ||
await initDepsOptimizer(config) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bluwy we need to await the optimizer init here. The setup is very lean and it starts the processing in the background so this shouldn't take more than a few ms. The issue was evident when I tried to implement the wait 500ms when there is a |
||
} | ||
|
||
const { root, server: serverConfig } = config | ||
|
@@ -665,13 +664,9 @@ export async function createServer( | |
|
||
// when the optimizer is ready, hook server so that it can reload the page | ||
// or invalidate the module graph when needed | ||
if (depsOptimizerReady) { | ||
depsOptimizerReady.then(() => { | ||
const depsOptimizer = getDepsOptimizer(config) | ||
if (depsOptimizer) { | ||
depsOptimizer.server = server | ||
} | ||
}) | ||
const depsOptimizer = getDepsOptimizer(config) | ||
if (depsOptimizer) { | ||
depsOptimizer.server = server | ||
} | ||
|
||
if (!middlewareMode && httpServer) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we stream .contents, or use them here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need to make it a string here. For sourcemaps, since they're handled in the transform middleware, we could, but I tried that and it doesn't work since etags are generated via the
Buffer
instance, andBuffer.isBuffer(new Uint8Array(2))
is false.