@windwalker-io/fusion-next 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +19 -19
- package/dist/index.cjs +6270 -6202
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6270 -6202
- package/dist/index.js.map +1 -1
- package/jest.config.ts +214 -214
- package/package.json +55 -54
- package/resources/img/credit.txt +2 -2
- package/types/vue/global.d.ts +14 -14
- package/types/vue/shims-vue.d.ts +5 -5
- package/types/vue/vue-runtime.d.ts +16 -16
- package/vite.config.ts +71 -71
package/dist/index.d.ts
CHANGED
|
@@ -72,12 +72,14 @@ export declare class ConfigBuilder {
|
|
|
72
72
|
merge(override: UserConfig | ((config: UserConfig) => UserConfig)): this;
|
|
73
73
|
private getDefaultOutput;
|
|
74
74
|
private getChunkDir;
|
|
75
|
+
getAssetDefaultSubdir(assetInfo: PreRenderedAsset): string;
|
|
75
76
|
private getChunkNameFromTask;
|
|
76
77
|
ensurePath(path: string, def?: any): this;
|
|
77
78
|
get(path: string): any;
|
|
78
79
|
set(path: string, value: any): this;
|
|
79
80
|
addTask(input: string, group?: string): BuildTask;
|
|
80
81
|
addCleans(...paths: string[]): this;
|
|
82
|
+
addWatch(file: string, watch: WatchTask): void;
|
|
81
83
|
relativePath(to: string): string;
|
|
82
84
|
debug(): void;
|
|
83
85
|
}
|
|
@@ -294,6 +296,7 @@ declare type RunnerCliOptions = {
|
|
|
294
296
|
v?: number;
|
|
295
297
|
verbose?: number;
|
|
296
298
|
serverFile?: string;
|
|
299
|
+
pidFile?: string;
|
|
297
300
|
s?: string;
|
|
298
301
|
hmr?: boolean;
|
|
299
302
|
};
|