electron-vite-vue/script/build-main.ts

59 lines
1.6 KiB
TypeScript
Raw Normal View History

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))
const opts = options(argv.env)
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 => {
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()
2021-07-10 08:51:15 +08:00
child = spawn(
electron as any,
[join(__dirname, `../${main}`)],
{
stdio: 'inherit',
env: Object.assign(process.env, { NODE_ENV: argv.env }),
})
2020-12-24 10:17:27 +08:00
} else if (ev.code === 'ERROR') {
console.log(ev.error)
}
})
})
} else {
spinner.start()
rollup(opts)
2020-12-24 10:17:27 +08:00
.then(build => {
spinner.stop()
console.log(TAG, chalk.green('Electron build successed.'))
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')
})
}