webpack/lib/IgnorePlugin.js

40 lines
1.0 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
class IgnorePlugin {
constructor(resourceRegExp, contextRegExp) {
this.resourceRegExp = resourceRegExp;
this.contextRegExp = contextRegExp;
}
apply(compiler) {
const resourceRegExp = this.resourceRegExp;
const contextRegExp = this.contextRegExp;
compiler.plugin("normal-module-factory", (nmf) => {
nmf.plugin("before-resolve", (result, callback) => {
if(!result) return callback();
if(resourceRegExp.test(result.request) &&
(!contextRegExp || contextRegExp.test(result.context))) {
return callback();
}
return callback(null, result);
});
});
compiler.plugin("context-module-factory", (cmf) => {
cmf.plugin("before-resolve", (result, callback) => {
if(!result) return callback();
2017-03-04 07:43:04 +08:00
if(resourceRegExp.test(result.request) &&
2017-03-04 07:51:53 +08:00
(!contextRegExp || contextRegExp.test(result.context))) {
return callback();
}
return callback(null, result);
});
});
}
}
module.exports = IgnorePlugin;