webpack/lib/container/ModuleFederationPlugin.js

41 lines
978 B
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,
overridables: options.shared
}).apply(compiler);
new ContainerReferencePlugin({
remoteType: options.remoteType || options.library.type,
remotes: options.remotes,
overrides: options.shared
}).apply(compiler);
}
}
module.exports = ModuleFederationPlugin;