mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-11-15 09:35:14 +01:00
21 lines
574 B
JavaScript
21 lines
574 B
JavaScript
const path = require('path')
|
|
const common = require('./webpack.common.config')
|
|
const { spawn } = require('child_process')
|
|
|
|
module.exports = Object.assign({}, common, {
|
|
devtool: 'cheap-source-map',
|
|
devServer: {
|
|
contentBase: path.resolve(__dirname, 'build'),
|
|
stats: 'minimal',
|
|
before: () => {
|
|
spawn('electron', ['.'], {
|
|
shell: true,
|
|
env: process.env,
|
|
stdio: 'inherit'
|
|
})
|
|
.on('close', () => process.exit(0))
|
|
.on('error', spawnError => console.error(spawnError)) // eslint-disable-line no-console
|
|
}
|
|
}
|
|
})
|