Skip to content
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

feat: non-blocking pre bundling of dependencies #6758

Merged
merged 29 commits into from Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
08bb508
feat: non-blocking pre bundling of dependencies
patak-dev Feb 4, 2022
3b3d365
fix: normalize path for windows
patak-dev Feb 4, 2022
ee96c17
fix: isOptimizedDepFile missing cacheDir normalize path
patak-dev Feb 5, 2022
b642546
chore: OptimizeDepsProcessing type
patak-dev Feb 8, 2022
a43878f
chore: break early for stableFiles logic
patak-dev Feb 8, 2022
b47641b
chore: use getXXX naming
patak-dev Feb 8, 2022
c7fdb42
chore: refactor stableFiles to alteredFiles
patak-dev Feb 8, 2022
d71989a
chore: correct alteredFiles condition
patak-dev Feb 8, 2022
40c4457
fix: avoid throwing an error when on outdated dep request
patak-dev Feb 8, 2022
6ecafb0
fix: error construction
patak-dev Feb 8, 2022
b414675
chore: remove unneeded condition
patak-dev Feb 10, 2022
06389aa
fix: correctly get info about optimized deps source maps
patak-dev Feb 10, 2022
dce0e3b
chore: mark holdBackServerStart as experimental
patak-dev Feb 10, 2022
147c134
chore: merge main
patak-dev Feb 12, 2022
bdcf28a
fix: process optimized deps source maps in transform middleware
patak-dev Feb 14, 2022
7677368
chore: check URL version in optimizeDeps
patak-dev Feb 15, 2022
c264ca9
chore: typo
antfu Feb 16, 2022
db90934
fix: add /@fs even if the optimize dep doesn't yet exists
patak-dev Feb 17, 2022
e09101b
chore: merge changes
patak-dev Feb 17, 2022
0f7c1e7
fix: avoid source map warnings for outdated map requests
patak-dev Feb 18, 2022
7f51389
fix: sync swap of new processed deps in disk
patak-dev Feb 18, 2022
a637809
fix: ensure optimizeDeps isn't run concorrently
patak-dev Feb 18, 2022
3f9ec98
fix: post-optimization handling
patak-dev Feb 18, 2022
44eca4e
refactor: createOptimizeDepsRun, remove new option
patak-dev Feb 19, 2022
d587774
fix: delay full reload condition
patak-dev Feb 19, 2022
7888a75
chore: cleanup
patak-dev Feb 19, 2022
d67b51c
chore: merge main
patak-dev Feb 21, 2022
b88b722
Merge branch 'main' into feat/non-blocking-pre-bundling
patak-dev Feb 28, 2022
143747e
chore: merge main
patak-dev Mar 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/vite/src/node/index.ts
Expand Up @@ -32,7 +32,10 @@ export type {
} from './preview'
export type {
DepOptimizationMetadata,
DepOptimizationOptions
DepOptimizationOptions,
DepOptimizationResult,
DepOptimizationProcessing,
OptimizedDepInfo
} from './optimizer'
export type { Plugin } from './plugin'
export type { PackageCache, PackageData } from './packages'
Expand Down