refactor the repl tool to support multipage apps and better dev

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent 4e636e1b6e
commit b065b22f09
7 changed files with 215 additions and 130 deletions

6
test.d.ts vendored
View File

@@ -8,8 +8,12 @@ declare module 'rollup-plugin-node-resolve' {
export = resolve;
}
declare module 'rollup-plugin-terser' {
export function terser(options?: any): any;
}
declare module 'rollup-plugin-postcss' {
function postcss(options: any): any;
function postcss(options?: any): any;
export = postcss;
}