123456789101112131415161718 |
- const path = require('path')
- const dependencies = require('../package.json')
- /**
- * `electron-packager` options
- * https://simulatedgreg.gitbooks.io/electron-vue/content/en/using-electron-packager.html
- */
- module.exports = {
- arch: 'ia32',
- asar: false, //{ unpack: "**/bin/**"},
- dir: path.join(__dirname, '../'),
- icon: path.join(__dirname, '../build/icons/icon'),
- ignore: /(^\/(src|test|\.[a-z]+|README|yarn|static|dist\/web))|\.gitkeep/,
- out: path.join(__dirname, '../build'),
- overwrite: true,
- platform: process.env.BUILD_TARGET || 'all',
- appCopyright: dependencies.softInfo.copyright
- }
|