2020-12-24 10:17:27 +08:00
|
|
|
/**
|
|
|
|
* electron 打包
|
|
|
|
*/
|
|
|
|
import { join } from 'path'
|
|
|
|
import { spawn, ChildProcess } from 'child_process'
|
|
|
|
import { watch, rollup, OutputOptions } from 'rollup'
|
|
|
|
import minimist from 'minimist'
|
|
|
|
import chalk from 'chalk'
|
|
|
|
import ora from 'ora'
|
|
|
|
import electron from 'electron'
|
|
|
|
import dotenv from 'dotenv'
|
2021-02-17 22:27:40 +08:00
|
|
|
import { waitOn } from './utils'
|
2020-12-24 10:17:27 +08:00
|
|
|
import options from './rollup.config'
|
|
|
|
import { main } from '../package.json'
|
|
|
|
|
|
|
|
dotenv.config({ path: join(__dirname, '../.env') })
|
|
|
|
|
|
|
|
const argv = minimist(process.argv.slice(2))
|
2021-05-15 14:53:43 +08:00
|
|
|
const opts = options(argv.env)
|
2021-04-01 11:32:55 +08:00
|
|
|
const TAG = '[build-main.ts]'
|
2020-12-24 10:17:27 +08:00
|
|
|
const spinner = ora(`${TAG} Electron build...`)
|
|
|
|
|
|
|
|
if (argv.watch) {
|
2021-02-17 22:27:40 +08:00
|
|
|
waitOn({ port: process.env.PORT as string }).then(msg => {
|
2021-05-15 14:53:43 +08:00
|
|
|
const watcher = watch(opts)
|
2020-12-24 10:17:27 +08:00
|
|
|
let child: ChildProcess
|
|
|
|
watcher.on('change', filename => {
|
|
|
|
const log = chalk.green(`change -- ${filename}`)
|
|
|
|
console.log(TAG, log)
|
|
|
|
})
|
|
|
|
watcher.on('event', ev => {
|
|
|
|
if (ev.code === 'END') {
|
|
|
|
if (child) child.kill()
|
|
|
|
child = spawn(electron as any, [join(__dirname, `../${main}`)], { stdio: 'inherit' })
|
|
|
|
} else if (ev.code === 'ERROR') {
|
|
|
|
console.log(ev.error)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
spinner.start()
|
2021-05-15 14:53:43 +08:00
|
|
|
rollup(opts)
|
2020-12-24 10:17:27 +08:00
|
|
|
.then(build => {
|
|
|
|
spinner.stop()
|
|
|
|
console.log(TAG, chalk.green('Electron build successed.'))
|
2021-05-15 14:53:43 +08:00
|
|
|
build.write(opts.output as OutputOptions)
|
2020-12-24 10:17:27 +08:00
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
spinner.stop()
|
|
|
|
console.log(`\n${TAG} ${chalk.red('构建报错')}\n`, error, '\n')
|
|
|
|
})
|
|
|
|
}
|