feat: pake can use external scripts

This commit is contained in:
jeasonnow
2023-06-08 16:48:19 +08:00
parent 8ce401735f
commit 9acca818fd
11 changed files with 99 additions and 21 deletions

3
bin/types.ts vendored
View File

@@ -43,6 +43,9 @@ export interface PakeCliOptions {
/** 调试模式,会输出更多日志 */
debug: boolean;
/** 需要注入页面的外部脚本 */
inject: string[];
}
export interface PakeAppOptions extends PakeCliOptions {