Skip to content
Snippets Groups Projects
forge.config.js 667 B
Newer Older
  • Learn to ignore specific revisions
  • Bye's avatar
    Bye committed
    module.exports = {
      packagerConfig: { /* ... */ },
      rebuildConfig: { /* ... */ },
      makers: [
        {
          name: '@electron-forge/maker-squirrel',
          config: {}
        },
        {
          name: '@electron-forge/maker-zip',
          platforms: ['linux', 'win32'],
    
    Bye's avatar
    Bye committed
        },
        {
    
    Bye's avatar
    Bye committed
          name: "@electron-forge/maker-deb",
    
    Bye's avatar
    Bye committed
          "config": {}
        },
        {
    
    Bye's avatar
    Bye committed
          name: "@electron-forge/maker-rpm",
          config: {}
    
    Bye's avatar
    Bye committed
        }
      ],
      publishers: [
        {
          name: '@electron-forge/publisher-github',
          config: {
            repository: {
              owner: 'byemc',
              name: 'waves'
            },
    
    Bye's avatar
    Bye committed
            prerelease: true,
            draft: false
    
    Bye's avatar
    Bye committed
          }
    
    Bye's avatar
    Bye committed
        }
      ],
    
    Bye's avatar
    Bye committed
      plugins: [
      ],
    
    Bye's avatar
    Bye committed
    };