interface MakeOptions {
    arch?: string;
    dir?: string;
    interactive?: boolean;
    outDir?: string;
    overrideTargets?: MakeTargets;
    platform?: string;
    skipPackage?: boolean;
}

Properties

arch?: string

The target architecture

dir?: string

The path to the app from which distrubutables are generated

interactive?: boolean

Whether to use sensible defaults or prompt the user visually

outDir?: string

The path to the directory containing generated distributables

overrideTargets?: MakeTargets

An array of make targets to override your forge config

platform?: string

The target platform

skipPackage?: boolean

Whether to skip the pre-make packaging step