webpack/lib/container/ModuleFederationPlugin.js

44 lines
1.0 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra and Zackary Jackson @ScriptedAlchemy
*/
"use strict";
const ContainerPlugin = require("./ContainerPlugin");
const ContainerReferencePlugin = require("./ContainerReferencePlugin");
/** @typedef {import("../Compiler")} Compiler */
class ModuleFederationPlugin {
constructor(options) {
// TODO options validation
this.options = options;
}
/**
* @param {Compiler} compiler webpack compiler
* @returns {void}
*/
apply(compiler) {
const { options } = this;
new ContainerPlugin({
name: options.name,
library: options.library,
filename: options.filename,
exposes: options.exposes,
2020-04-01 00:57:09 +08:00
overridables: options.shared
}).apply(compiler);
new ContainerReferencePlugin({
remoteType:
2020-04-04 07:27:51 +08:00
options.remoteType ||
(options.library && options.library.type) ||
compiler.options.externalsType,
remotes: options.remotes,
2020-04-01 00:57:09 +08:00
overrides: options.shared
}).apply(compiler);
}
}
module.exports = ModuleFederationPlugin;