This repository was archived by the owner on Sep 9, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathsupportWebpack4.js
58 lines (48 loc) · 1.67 KB
/
supportWebpack4.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
import {
workerGenerator,
sourceMappingURLRegex,
sourceURLWebpackRegex,
} from "./utils";
export default function runAsChild(
loaderContext,
workerContext,
options,
callback
) {
workerContext.compiler.runAsChild((error, entries, compilation) => {
if (error) {
return callback(error);
}
if (entries[0]) {
// eslint-disable-next-line no-param-reassign, prefer-destructuring
const workerFilename = entries[0].files[0];
let workerSource = compilation.assets[workerFilename].source();
if (options.inline === "no-fallback") {
// eslint-disable-next-line no-underscore-dangle, no-param-reassign
delete loaderContext._compilation.assets[workerFilename];
// TODO improve it, we should store generated source maps files for file in `assetInfo`
// eslint-disable-next-line no-underscore-dangle
if (loaderContext._compilation.assets[`${workerFilename}.map`]) {
// eslint-disable-next-line no-underscore-dangle, no-param-reassign
delete loaderContext._compilation.assets[`${workerFilename}.map`];
}
// Remove `/* sourceMappingURL=url */` comment
workerSource = workerSource.replace(sourceMappingURLRegex, "");
// Remove `//# sourceURL=webpack-internal` comment
workerSource = workerSource.replace(sourceURLWebpackRegex, "");
}
const workerCode = workerGenerator(
loaderContext,
workerFilename,
workerSource,
options
);
return callback(null, workerCode);
}
return callback(
new Error(
`Failed to compile web worker "${workerContext.request}" request`
)
);
});
}