Skip to main content
Module

x/aleph/server/deps.ts>esbuild.PluginBuild

The Full-stack Framework in Deno.
Very Popular
Latest
interface esbuild.PluginBuild
import { type esbuild } from "https://deno.land/x/aleph@1.0.0-beta.44/server/deps.ts";
const { PluginBuild } = esbuild;

Properties

esbuild: { context: context; build: build; buildSync: buildSync; transform: transform; transformSync: transformSync; formatMessages: formatMessages; formatMessagesSync: formatMessagesSync; analyzeMetafile: analyzeMetafile; analyzeMetafileSync: analyzeMetafileSync; initialize: initialize; version: version; }

Methods

resolve(path: string, options?: ResolveOptions): Promise<ResolveResult>
onStart(callback: () => (
| null
| void
| Promise<OnStartResult | null | void>
)
): void
onEnd(callback: (result: BuildResult) => (
| null
| void
| Promise<OnEndResult | null | void>
)
): void
onResolve(options: OnResolveOptions, callback: (args: OnResolveArgs) => (
| null
| undefined
| Promise<OnResolveResult | null | undefined>
)
): void
onLoad(options: OnLoadOptions, callback: (args: OnLoadArgs) => (
| null
| undefined
| Promise<OnLoadResult | null | undefined>
)
): void
onDispose(callback: () => void): void