Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 33 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 6 additions & 13 deletions packages/cli/binding/index.d.cts
Original file line number Diff line number Diff line change
Expand Up @@ -2110,6 +2110,12 @@ export interface BindingDevOptions {
| undefined
| ((result: BindingResult<[BindingClientHmrUpdate[], string[]]>) => void | Promise<void>);
onOutput?: undefined | ((result: BindingResult<BindingOutputs>) => void | Promise<void>);
/**
* Called with assets emitted while generating an HMR patch or compiling a
* lazy entry. These never go through `on_output`, so a consumer (e.g. Vite)
* must register this to serve them (e.g. write them to its in-memory files).
*/
onAdditionalAssets?: undefined | ((output: BindingOutputs) => void | Promise<void>);
rebuildStrategy?: BindingRebuildStrategy;
watch?: BindingDevWatchOptions;
}
Expand Down Expand Up @@ -3003,18 +3009,6 @@ export interface BindingViteBuildImportAnalysisPluginConfig {
optimizeModulePreloadRelativePaths: boolean;
renderBuiltUrl: boolean;
isRelativeBase: boolean;
v2?: BindingViteBuildImportAnalysisPluginV2Config;
}

export interface BindingViteBuildImportAnalysisPluginV2Config {
isSsr: boolean;
urlBase: string;
decodedBase: string;
modulePreload: false | BindingModulePreloadOptions;
renderBuiltUrl?: (
filename: string,
type: BindingRenderBuiltUrlConfig,
) => undefined | string | BindingRenderBuiltUrlRet;
}

export interface BindingViteDynamicImportVarsPluginConfig {
Expand All @@ -3041,7 +3035,6 @@ export type BindingViteJsonPluginStringify = boolean | string;
export interface BindingViteManifestPluginConfig {
root: string;
outPath: string;
isEnableV2?: boolean;
isLegacy?: (args: BindingNormalizedOptions) => boolean;
cssEntries: () => Record<string, string>;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
},
"bundledVersions": {
"vite": "8.1.0",
"rolldown": "1.1.2",
"rolldown": "1.1.3",
"tsdown": "0.22.3"
}
}
2 changes: 1 addition & 1 deletion packages/tools/.upstream-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"rolldown": {
"repo": "https://github.com/rolldown/rolldown.git",
"branch": "main",
"hash": "e0d0b1b876c9416037550516b1adbd9624072d5d"
"hash": "e77f7c792d718c92cb066a79b72a9dc1e9e910d4"
},
"vite": {
"repo": "https://github.com/vitejs/vite.git",
Expand Down
Loading
Loading