refactor the repl tool to support multipage apps and better dev

This commit is contained in:
Yanzhen Yu
2018-11-23 16:01:55 +08:00
parent 181c8e1d5d
commit 7343ce4719
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;
}