@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/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
  };