feat(bundler): Integrate rolldown bundler support and update bundler selection logic

This commit is contained in:
2025-06-19 20:10:45 +00:00
parent 09a470d409
commit 2a808cc186
10 changed files with 472 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ export interface ICliOptions {
commonjs?: boolean;
skiplibcheck?: boolean;
production?: boolean;
bundler: 'parcel' | 'esbuild' | 'rollup'
bundler: 'parcel' | 'esbuild' | 'rollup' | 'rolldown'
}
export interface IEnvTransportOptions {