ZIP
Create a ZIP archive for your Electron app using Electron Forge.
Installation
npm install --save-dev @electron-forge/maker-zipUsage
module.exports = {
makers: [
{
name: '@electron-forge/maker-zip'
}
]
};Static file auto-updates (macOS)
module.exports = {
makers: [
{
name: '@electron-forge/maker-zip',
config: (arch) => ({
macUpdateManifestBaseUrl: `https://my-bucket.s3.amazonaws.com/my-app-updates/darwin/${arch}`
})
}
]
};Last updated
Was this helpful?