Blame view

node_modules/webpack/lib/IgnorePlugin.js 1.51 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  /*
  	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;
  
  		this.checkIgnore = this.checkIgnore.bind(this);
  	}
  
  	/*
  	 * Only returns true if a "resourceRegExp" exists
  	 * and the resource given matches the regexp.
  	 */
  	checkResource(resource) {
  		if(!this.resourceRegExp) {
  			return false;
  		}
  		return this.resourceRegExp.test(resource);
  	}
  
  	/*
  	 * Returns true if contextRegExp does not exist
  	 * or if context matches the given regexp.
  	 */
  	checkContext(context) {
  		if(!this.contextRegExp) {
  			return true;
  		}
  		return this.contextRegExp.test(context);
  	}
  
  	/*
  	 * Returns true if result should be ignored.
  	 * false if it shouldn't.
  	 *
  	 * Not that if "contextRegExp" is given, both the "resourceRegExp"
  	 * and "contextRegExp" have to match.
  	 */
  	checkResult(result) {
  		if(!result) {
  			return true;
  		}
  		return this.checkResource(result.request) && this.checkContext(result.context);
  	}
  
  	checkIgnore(result, callback) {
  		// check if result is ignored
  		if(this.checkResult(result)) {
  			return callback();
  		}
  		return callback(null, result);
  	}
  
  	apply(compiler) {
  		compiler.plugin("normal-module-factory", (nmf) => {
  			nmf.plugin("before-resolve", this.checkIgnore);
  		});
  		compiler.plugin("context-module-factory", (cmf) => {
  			cmf.plugin("before-resolve", this.checkIgnore);
  		});
  	}
  }
  
  module.exports = IgnorePlugin;