@toinane/electron-forge-maker-nsis
How to use
In your forge.config.ts file:
import { MakerNSIS } from '@toinane/electron-forge-maker-nsis';
// This is the options you can set from app-builder-lib
// import { PackagerOptions } from 'app-builder-lib';
const config: ForgeConfig = {
makers: [new MakerNSIS({ options: PackagerOptions })]
};
export default config;
Options
You can set all options avalaible from PackagerOptions
from app-builder-lib
. See Github documentation.
See also Electron-builder documentation.