@oazmi/superbuild - v0.1.0
    Preparing search index...

    Interface OnEmitArgs

    interface OnEmitArgs {
        outputPath: string;
        inputs: BundledInputFile[];
        imports: ImportedEntity<any>[];
        contents: Uint8Array<ArrayBuffer>;
    }
    Index

    Properties

    outputPath: string

    the output path of this bundled resource, relative to the cwd or absWorkingDir (not the outdir directory!), and always in posix format.

    TODO: I actually don't provide a relative path right now. but should I even?

    a list of input resources that were bundled into this resource (by esbuild), or were chunked by esbuild for this resource.

    imports: ImportedEntity<any>[]

    a list of resource imports that were included in the build for this resource. these, however, are not currently bundled into the contents of your resource; they're still external resources that your transformed file will need to reference (re-incorporate) in order to import during runtime.

    contents: Uint8Array<ArrayBuffer>

    the transformed and/or bundled content that may need to have the linked imports re-incorporated into it.