-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbuild.js
148 lines (128 loc) · 3 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
"use strict";
process.env.NODE_ENV = "production";
const { say } = require("cfonts");
const chalk = require("chalk");
const del = require("del");
const webpack = require("webpack");
const Listr = require("listr");
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();
function clean() {
del.sync(["build/*", "!build/icons", "!build/icons/icon.*"]);
console.log(`\n${doneLog}\n`);
process.exit();
}
async function build() {
greeting();
del.sync(["dist/electron/*", "!.gitkeep"]);
let results = "";
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 }
);
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();
})
.catch(err => {
process.exit(1);
});
}
function pack(config) {
return new Promise((resolve, reject) => {
config.mode = "production";
webpack(config, (err, stats) => {
if (err) reject(err.stack || err);
else if (stats.hasErrors()) {
let err = "";
stats
.toString({
chunks: false,
colors: true
})
.split(/\r?\n/)
.forEach(line => {
err += ` ${line}\n`;
});
reject(err);
} else {
resolve(
stats.toString({
chunks: false,
colors: true
})
);
}
});
});
}
function web() {
del.sync(["dist/web/*", "!.gitkeep"]);
webConfig.mode = "production";
webpack(webConfig, (err, stats) => {
if (err || stats.hasErrors()) console.log(err);
console.log(
stats.toString({
chunks: false,
colors: true
})
);
process.exit();
});
}
function greeting() {
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();
}