Skip to main content
Module

x/gustwind/types.ts>BuildWorkerEvent

🐳💨 – Deno powered JSON oriented site generator
Go to Latest
type alias BuildWorkerEvent
import { type BuildWorkerEvent } from "https://deno.land/x/gustwind@v0.41.2/types.ts";
definition:
| { type: "init"; payload: { cwd: string; pluginDefinitions: PluginOptions[]; outputDirectory: string; }; }
| { type: "build"; payload: { routes: Routes; route: Route; dir: string; url: string; }; }
| { type: "listDirectory"; payload: { path: string; type: string; }; }
| { type: "loadJSON"; payload: { path: string; type: string; }; }
| { type: "loadModule"; payload: { path: string; type: string; }; }
| { type: "writeFile"; payload: { outputDirectory: string; file: string; data: string; }; }
| { type: "writeFiles"; payload: { inputDirectory: string; outputDirectory: string; outputPath: string; }; }
| { type: "writeScript"; payload: { outputDirectory: string; file: string; scriptPath: string; externals?: string[]; }; }