-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathdev-runner.ts
202 lines (171 loc) · 5.54 KB
/
dev-runner.ts
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import * as BluebirdPromise from "bluebird"
import chalk from "chalk"
import { spawn } from "child_process"
import { readdir, remove } from "fs-extra"
import * as path from "path"
import "source-map-support/register"
import webpack, { Compiler } from "webpack"
import { getElectronWebpackConfiguration, getPackageMetadata } from "../config"
import { HmrServer } from "../electron-main-hmr/HmrServer"
import { configure } from "../main"
import { getFreePort, orNullIfFileNotExist } from "../util"
import { DelayedFunction, getCommonEnv, logError, logProcess, logProcessErrorOutput } from "./devUtil"
import { startRenderer } from "./WebpackDevServerManager"
const projectDir = process.cwd()
let socketPath: string | null = null
const debug = require("debug")("electron-webpack")
// do not remove main.js to allow IDE to keep breakpoints
async function emptyMainOutput() {
const electronWebpackConfig = await getElectronWebpackConfiguration({
projectDir,
packageMetadata: getPackageMetadata(projectDir),
})
const outDir = path.join(electronWebpackConfig.commonDistDirectory!!, "main")
const files = await orNullIfFileNotExist(readdir(outDir))
if (files == null) {
return
}
await BluebirdPromise.map(files.filter(it => !it.startsWith(".") && it !== "main.js"), it => remove(outDir + path.sep + it))
}
class DevRunner {
async start() {
const wdsHost = "localhost"
const wdsPort = await getFreePort(wdsHost, 9080)
const env = {
...getCommonEnv(),
ELECTRON_WEBPACK_WDS_HOST: wdsHost,
ELECTRON_WEBPACK_WDS_PORT: wdsPort,
}
const hmrServer = new HmrServer()
await Promise.all([
startRenderer(projectDir, env),
hmrServer.listen()
.then(it => {
socketPath = it
}),
emptyMainOutput()
.then(() => this.startMainCompilation(hmrServer)),
])
hmrServer.ipc.on("error", (error: Error) => {
logError("Main", error)
})
const electronWebpackConfig = await getElectronWebpackConfiguration({
projectDir,
packageMetadata: getPackageMetadata(projectDir),
})
const electronArgs = process.env.ELECTRON_ARGS
const args = electronArgs != null && electronArgs.length > 0 ? JSON.parse(electronArgs) : [`--inspect=${await getFreePort("127.0.0.1", 5858)}`]
args.push(path.join(electronWebpackConfig.commonDistDirectory!!, "main/main.js"))
// Pass remaining arguments to the application. Remove 3 instead of 2, to remove the `dev` argument as well.
args.push(...process.argv.slice(3))
// we should start only when both start and main are started
startElectron(args, env)
}
async startMainCompilation(hmrServer: HmrServer) {
const mainConfig = await configure("main", {
production: false,
autoClean: false,
forkTsCheckerLogger: {
info: () => {
// ignore
},
warn: (message: string) => {
logProcess("Main", message, chalk.yellow)
},
error: (message: string) => {
logProcess("Main", message, chalk.red)
},
},
})
await new Promise((resolve: (() => void) | null, reject: ((error: Error) => void) | null) => {
const compiler: Compiler = webpack(mainConfig!!)
const printCompilingMessage = new DelayedFunction(() => {
logProcess("Main", "Compiling...", chalk.yellow)
})
compiler.hooks.compile.tap("electron-webpack-dev-runner", () => {
hmrServer.beforeCompile()
printCompilingMessage.schedule()
})
let watcher: Compiler.Watching | null = compiler.watch({}, (error, stats) => {
printCompilingMessage.cancel()
if (watcher == null) {
return
}
if (error != null) {
if (reject == null) {
logError("Main", error)
}
else {
reject(error)
reject = null
}
return
}
logProcess("Main", stats.toString({
colors: true,
}), chalk.yellow)
if (resolve != null) {
resolve()
resolve = null
return
}
hmrServer.built(stats)
})
require("async-exit-hook")((callback: () => void) => {
debug(`async-exit-hook: ${callback == null}`)
const w = watcher
if (w == null) {
return
}
watcher = null
w.close(() => callback())
})
})
}
}
async function main() {
const devRunner = new DevRunner()
await devRunner.start()
}
main()
.catch(error => {
console.error(error)
})
function startElectron(electronArgs: Array<string>, env: any) {
const electronProcess = spawn(require("electron").toString(), electronArgs, {
env: {
...env,
ELECTRON_HMR_SOCKET_PATH: socketPath,
}
})
// required on windows
require("async-exit-hook")(() => {
electronProcess.kill("SIGINT")
})
let queuedData: string | null = null
electronProcess.stdout.on("data", data => {
data = data.toString()
// do not print the only line - doesn't make sense
if (data.trim() === "[HMR] Updated modules:") {
queuedData = data
return
}
if (queuedData != null) {
data = queuedData + data
queuedData = null
}
logProcess("Electron", data, chalk.blue)
})
logProcessErrorOutput("Electron", electronProcess)
electronProcess.on("close", exitCode => {
debug(`Electron exited with exit code ${exitCode}`)
if (exitCode === 100) {
setImmediate(() => {
startElectron(electronArgs, env)
})
}
else {
(process as any).emit("message", "shutdown")
}
})
}