UNPKG

751 BMarkdownView Raw
1## maker-squirrel
2
3`@electron-forge/maker-squirrel` builds a number of files required to distribute apps using the Squirrel.Windows framework. It generates a `{appName} Setup.exe` file which is the main installer for your application, `{appName}-full.nupkg` and a `RELEASES` file which you use to issue updates to your application.
4
5Pre-requisites:
6
7* Windows machine
8* Linux machine with `mono` and `wine` installed.
9
10Configuration options are documented in [`MakerSquirrelConfigOptions`](https://js.electronforge.io/interfaces/_electron_forge_maker_squirrel.InternalOptions.Options.html).
11
12```javascript
13{
14 name: '@electron-forge/maker-squirrel',
15 config: {
16 certificateFile: './cert.pfx',
17 certificatePassword: 'this-is-a-secret'
18 }
19}
20```