-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcompiler-fork.js
69 lines (64 loc) · 1.56 KB
/
compiler-fork.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
const { join } = require('path');
const { configure } = require('../../');
const {
BuildError,
CompilerError,
serializeError,
} = require('../utils/errors');
const { createCompiler } = require('./compiler');
process.on('message', (message) => {
if (message.name !== 'start') return;
const {
buildConfigArgs,
configureArgs,
options: { watch },
} = message;
const webpackConfig = configure(...configureArgs).getBuildConfig(
...buildConfigArgs
);
const {
output: { path, filename },
watchOptions,
} = webpackConfig;
const output = join(path, filename);
try {
const compiler = createCompiler(webpackConfig);
const callback = (compileError, stats) => {
if (compileError) {
process.send({
type: 'reject',
reason: new CompilerError(compileError),
});
} else if (stats.hasErrors()) {
stats.toJson({ all: false, errors: true }).errors.forEach((error) => {
process.send({
type: 'reject',
reason: new BuildError(error),
});
});
} else {
process.send({
type: 'resolve',
data: {
output,
stats: stats.toJson({
chunks: false,
modules: false,
entrypoints: false,
}),
},
});
}
};
if (watch) {
compiler.watch(watchOptions, callback);
} else {
compiler.run(callback);
}
} catch (error) {
process.send({
type: 'reject',
reason: serializeError(error),
});
}
});