mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 17:25:39 +01:00
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
class AddWorkerEntryPointPlugin {
|
|
constructor(webpack, {
|
|
id,
|
|
entry,
|
|
filename,
|
|
chunkFilename = undefined,
|
|
plugins = undefined,
|
|
}) {
|
|
this.webpack = webpack;
|
|
this.options = { id, entry, filename, chunkFilename, plugins };
|
|
}
|
|
|
|
apply(compiler) {
|
|
const webpack = this.webpack;
|
|
const { id, entry, filename, chunkFilename, plugins } = this.options;
|
|
compiler.hooks.make.tapAsync('AddWorkerEntryPointPlugin', (compilation, callback) => {
|
|
const outputOptions = {
|
|
filename,
|
|
chunkFilename,
|
|
publicPath: compilation.outputOptions.publicPath,
|
|
// HACK: globalObject is necessary to fix https://github.com/webpack/webpack/issues/6642
|
|
globalObject: 'this',
|
|
};
|
|
const childCompiler = compilation.createChildCompiler(id, outputOptions, [
|
|
new webpack.webworker.WebWorkerTemplatePlugin(),
|
|
new webpack.LoaderTargetPlugin('webworker'),
|
|
new webpack.SingleEntryPlugin(compiler.context, entry, 'main'),
|
|
]);
|
|
plugins.forEach((plugin) => plugin.apply(childCompiler));
|
|
childCompiler.runAsChild(callback);
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = AddWorkerEntryPointPlugin;
|