2018-03-07 14:28:48 +01:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
process.env.NODE_ENV = 'production'
|
|
|
|
|
|
|
|
const { say } = require('cfonts')
|
|
|
|
const chalk = require('chalk')
|
|
|
|
const del = require('del')
|
|
|
|
const { spawn } = require('child_process')
|
|
|
|
const webpack = require('webpack')
|
2019-09-17 13:41:12 +02:00
|
|
|
const Listr = require('listr')
|
2018-03-07 14:28:48 +01:00
|
|
|
|
|
|
|
const mainConfig = require('./webpack.main.config')
|
|
|
|
const rendererConfig = require('./webpack.renderer.config')
|
|
|
|
const webConfig = require('./webpack.web.config')
|
|
|
|
|
|
|
|
const doneLog = chalk.bgGreen.white(' DONE ') + ' '
|
|
|
|
const errorLog = chalk.bgRed.white(' ERROR ') + ' '
|
|
|
|
const okayLog = chalk.bgBlue.white(' OKAY ') + ' '
|
|
|
|
const isCI = process.env.CI || false
|
|
|
|
|
|
|
|
if (process.env.BUILD_TARGET === 'clean') clean()
|
|
|
|
else if (process.env.BUILD_TARGET === 'web') web()
|
|
|
|
else build()
|
|
|
|
|
2019-09-17 06:24:50 +02:00
|
|
|
function clean() {
|
2018-04-05 02:00:42 +02:00
|
|
|
del.sync(['build/*', '!build/icons', '!build/icons/icon.*', '!build/sounds', '!build/sounds/*'])
|
2018-03-07 14:28:48 +01:00
|
|
|
console.log(`\n${doneLog}\n`)
|
|
|
|
process.exit()
|
|
|
|
}
|
|
|
|
|
2019-09-17 06:24:50 +02:00
|
|
|
async function build() {
|
2018-03-07 14:28:48 +01:00
|
|
|
greeting()
|
|
|
|
|
|
|
|
del.sync(['dist/electron/*', '!.gitkeep'])
|
|
|
|
|
|
|
|
let results = ''
|
|
|
|
|
2019-09-17 13:41:12 +02:00
|
|
|
const tasks = new Listr(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
title: 'building master process',
|
|
|
|
task: async () => {
|
|
|
|
await pack(mainConfig)
|
|
|
|
.then(result => {
|
|
|
|
results += result + '\n\n'
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.log(`\n ${errorLog}failed to build main process`)
|
|
|
|
console.error(`\n${err}\n`)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'building renderer process',
|
|
|
|
task: async () => {
|
|
|
|
await pack(rendererConfig)
|
|
|
|
.then(result => {
|
|
|
|
results += result + '\n\n'
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.log(`\n ${errorLog}failed to build renderer process`)
|
|
|
|
console.error(`\n${err}\n`)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
{ concurrent: 2 }
|
|
|
|
)
|
2018-03-07 14:28:48 +01:00
|
|
|
|
2019-09-17 13:41:12 +02:00
|
|
|
await tasks
|
|
|
|
.run()
|
|
|
|
.then(() => {
|
|
|
|
process.stdout.write('\x1B[2J\x1B[0f')
|
|
|
|
console.log(`\n\n${results}`)
|
|
|
|
console.log(`${okayLog}take it away ${chalk.yellow('`electron-builder`')}\n`)
|
|
|
|
process.exit()
|
2019-09-17 06:24:50 +02:00
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2018-03-07 14:28:48 +01:00
|
|
|
}
|
|
|
|
|
2019-09-17 06:24:50 +02:00
|
|
|
function pack(config) {
|
2018-03-07 14:28:48 +01:00
|
|
|
return new Promise((resolve, reject) => {
|
2018-11-12 15:54:39 +01:00
|
|
|
config.mode = 'production'
|
2018-03-07 14:28:48 +01:00
|
|
|
webpack(config, (err, stats) => {
|
|
|
|
if (err) reject(err.stack || err)
|
|
|
|
else if (stats.hasErrors()) {
|
|
|
|
let err = ''
|
|
|
|
|
2019-09-17 06:24:50 +02:00
|
|
|
stats
|
|
|
|
.toString({
|
|
|
|
chunks: false,
|
|
|
|
colors: true
|
|
|
|
})
|
|
|
|
.split(/\r?\n/)
|
|
|
|
.forEach(line => {
|
|
|
|
err += ` ${line}\n`
|
|
|
|
})
|
2018-03-07 14:28:48 +01:00
|
|
|
|
|
|
|
reject(err)
|
|
|
|
} else {
|
2019-09-17 06:24:50 +02:00
|
|
|
resolve(
|
|
|
|
stats.toString({
|
|
|
|
chunks: false,
|
|
|
|
colors: true
|
|
|
|
})
|
|
|
|
)
|
2018-03-07 14:28:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-09-17 06:24:50 +02:00
|
|
|
function web() {
|
2018-03-07 14:28:48 +01:00
|
|
|
del.sync(['dist/web/*', '!.gitkeep'])
|
2018-11-12 15:54:39 +01:00
|
|
|
webConfig.mode = 'production'
|
2018-03-07 14:28:48 +01:00
|
|
|
webpack(webConfig, (err, stats) => {
|
|
|
|
if (err || stats.hasErrors()) console.log(err)
|
|
|
|
|
2019-09-17 06:24:50 +02:00
|
|
|
console.log(
|
|
|
|
stats.toString({
|
|
|
|
chunks: false,
|
|
|
|
colors: true
|
|
|
|
})
|
|
|
|
)
|
2018-03-07 14:28:48 +01:00
|
|
|
|
|
|
|
process.exit()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-09-17 06:24:50 +02:00
|
|
|
function greeting() {
|
2018-03-07 14:28:48 +01:00
|
|
|
const cols = process.stdout.columns
|
|
|
|
let text = ''
|
|
|
|
|
|
|
|
if (cols > 85) text = 'lets-build'
|
|
|
|
else if (cols > 60) text = 'lets-|build'
|
|
|
|
else text = false
|
|
|
|
|
|
|
|
if (text && !isCI) {
|
|
|
|
say(text, {
|
|
|
|
colors: ['yellow'],
|
|
|
|
font: 'simple3d',
|
|
|
|
space: false
|
|
|
|
})
|
|
|
|
} else console.log(chalk.yellow.bold('\n lets-build'))
|
|
|
|
console.log()
|
|
|
|
}
|