forked from webpack-contrib/extract-text-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExtractedModule.js
66 lines (54 loc) · 1.88 KB
/
ExtractedModule.js
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
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var SourceMapSource = require("webpack-sources").SourceMapSource;
var RawSource = require("webpack-sources").RawSource;
function ExtractedModule(identifier, originalModule, source, sourceMap, addtitionalInformation, prevModules) {
this._identifier = identifier;
this._originalModule = originalModule;
this._source = source;
this._sourceMap = sourceMap;
this._prevModules = prevModules;
this.addtitionalInformation = addtitionalInformation;
this.chunks = [];
}
module.exports = ExtractedModule;
ExtractedModule.prototype.getOrder = function() {
// http://stackoverflow.com/a/14676665/1458162
return /^@import url/.test(this._source) ? 0 : 1;
};
ExtractedModule.prototype.addChunk = function(chunk) {
var idx = this.chunks.indexOf(chunk);
if(idx < 0)
this.chunks.push(chunk);
};
ExtractedModule.prototype._removeAndDo = require("webpack/lib/removeAndDo");
ExtractedModule.prototype.removeChunk = function(chunk) {
return this._removeAndDo("chunks", chunk, "removeModule");
};
ExtractedModule.prototype.rewriteChunkInReasons = function(oldChunk, newChunks) { };
ExtractedModule.prototype.identifier = function() {
return this._identifier;
};
ExtractedModule.prototype.source = function() {
if(this._sourceMap)
return new SourceMapSource(this._source, null, this._sourceMap);
else
return new RawSource(this._source);
};
ExtractedModule.prototype.getOriginalModule = function() {
return this._originalModule;
};
ExtractedModule.prototype.getPrevModules = function() {
return this._prevModules;
};
ExtractedModule.prototype.addPrevModules = function(prevModules) {
prevModules.forEach(function(m) {
if(this._prevModules.indexOf(m) < 0)
this._prevModules.push(m);
}, this);
};
ExtractedModule.prototype.setOriginalModule = function(originalModule) {
this._originalModule = originalModule;
};