Skip to content

Commit b57321c

Browse files
authored
chore: mark builder api experimental (#18436)
1 parent f67629f commit b57321c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/vite/src/node/build.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1528,6 +1528,7 @@ export type ResolvedBuilderOptions = Required<BuilderOptions>
15281528

15291529
/**
15301530
* Creates a ViteBuilder to orchestrate building multiple environments.
1531+
* @experimental
15311532
*/
15321533
export async function createBuilder(
15331534
inlineConfig: InlineConfig = {},

packages/vite/src/node/config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ export interface UserConfig extends DefaultEnvironmentOptions {
345345
assetsInclude?: string | RegExp | (string | RegExp)[]
346346
/**
347347
* Builder specific options
348+
* @experimental
348349
*/
349350
builder?: BuilderOptions
350351
/**
@@ -564,6 +565,7 @@ export type ResolvedConfig = Readonly<
564565
esbuild: ESBuildOptions | false
565566
server: ResolvedServerOptions
566567
dev: ResolvedDevEnvironmentOptions
568+
/** @experimental */
567569
builder: ResolvedBuilderOptions
568570
build: ResolvedBuildOptions
569571
preview: ResolvedPreviewOptions

0 commit comments

Comments
 (0)