diff options
Diffstat (limited to 'node_modules/webpack/lib/LibraryTemplatePlugin.js')
-rw-r--r-- | node_modules/webpack/lib/LibraryTemplatePlugin.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/node_modules/webpack/lib/LibraryTemplatePlugin.js b/node_modules/webpack/lib/LibraryTemplatePlugin.js index 6e389053d..11ab06074 100644 --- a/node_modules/webpack/lib/LibraryTemplatePlugin.js +++ b/node_modules/webpack/lib/LibraryTemplatePlugin.js @@ -26,15 +26,20 @@ function accessorAccess(base, accessor, joinWith) { class LibraryTemplatePlugin {
- constructor(name, target, umdNamedDefine, auxiliaryComment) {
+ constructor(name, target, umdNamedDefine, auxiliaryComment, exportProperty) {
this.name = name;
this.target = target;
this.umdNamedDefine = umdNamedDefine;
this.auxiliaryComment = auxiliaryComment;
+ this.exportProperty = exportProperty;
}
apply(compiler) {
compiler.plugin("this-compilation", (compilation) => {
+ if(this.exportProperty) {
+ var ExportPropertyMainTemplatePlugin = require("./ExportPropertyMainTemplatePlugin");
+ compilation.apply(new ExportPropertyMainTemplatePlugin(this.exportProperty));
+ }
switch(this.target) {
case "var":
compilation.apply(new SetVarMainTemplatePlugin(`var ${accessorAccess(false, this.name)}`));
|