interface PublisherOptions {
    dir: string;
    forgeConfig: ResolvedForgeConfig;
    makeResults: ForgeMakeResult[];
    setStatusLine: ((statusLine) => void);
}

Properties

dir: string

The base directory of the apps source code

forgeConfig: ResolvedForgeConfig

The raw forgeConfig this app is using.

You probably shouldn't use this

makeResults: ForgeMakeResult[]

The results from running the make command

setStatusLine: ((statusLine) => void)

A method that allows the publisher to provide status / progress updates to the user. This method currently maps to setting the "output" line in the publisher listr task.

Type declaration

    • (statusLine): void
    • Parameters

      • statusLine: string

      Returns void