feat(bundler): Introduce rspack bundler support and update multi-bundler workflow

This commit is contained in:
Juergen Kunz
2025-06-19 20:37:21 +00:00
parent 2bc219e3bc
commit a4b6956072
12 changed files with 539 additions and 24 deletions

View File

@ -15,10 +15,8 @@ export class TsBundle {
switch (argvArg.bundler) {
case 'rolldown':
return './mod_rolldown/index.child.js';
case 'rollup':
return './mod_rollup/index.child.js';
case 'parcel':
return './mod_parcel/index.child.js';
case 'rspack':
return './mod_rspack/index.child.js';
case 'esbuild':
default:
return './mod_esbuild/index.child.js';