项目原始demo,不改动
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 

22 行
529 B

  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const ExternalModuleFactoryPlugin = require("./ExternalModuleFactoryPlugin");
  7. class ExternalsPlugin {
  8. constructor(type, externals) {
  9. this.type = type;
  10. this.externals = externals;
  11. }
  12. apply(compiler) {
  13. compiler.plugin("compile", (params) => {
  14. params.normalModuleFactory.apply(new ExternalModuleFactoryPlugin(this.type, this.externals));
  15. });
  16. }
  17. }
  18. module.exports = ExternalsPlugin;