webpack/lib/optimize/ChunkModuleIdRangePlugin.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2017-01-11 17:51:58 +08:00
"use strict";
class ChunkModuleIdRangePlugin {
constructor(options) {
this.options = options;
}
apply(compiler) {
const options = this.options;
2018-02-25 09:00:20 +08:00
compiler.hooks.compilation.tap("ChunkModuleIdRangePlugin", compilation => {
compilation.hooks.moduleIds.tap("ChunkModuleIdRangePlugin", modules => {
const chunk = this.chunks.find(chunk => chunk.name === options.name);
if (!chunk)
throw new Error(
"ChunkModuleIdRangePlugin: Chunk with name '" +
options.name +
"' was not found"
);
let currentId = options.start;
let chunkModules;
2018-02-25 09:00:20 +08:00
if (options.order) {
chunkModules = chunk.modules.slice();
2018-02-25 09:00:20 +08:00
switch (options.order) {
case "index":
chunkModules.sort((a, b) => {
return a.index - b.index;
});
break;
case "index2":
chunkModules.sort((a, b) => {
return a.index2 - b.index2;
});
break;
default:
2018-02-25 09:00:20 +08:00
throw new Error(
"ChunkModuleIdRangePlugin: unexpected value of order"
);
}
} else {
2018-02-25 09:00:20 +08:00
chunkModules = modules.filter(m => {
return m.chunks.includes(chunk);
});
}
2018-02-25 09:00:20 +08:00
for (let i = 0; i < chunkModules.length; i++) {
const m = chunkModules[i];
2018-02-25 09:00:20 +08:00
if (m.id === null) {
m.id = currentId++;
}
2018-02-25 09:00:20 +08:00
if (options.end && currentId > options.end) break;
}
});
});
}
}
module.exports = ChunkModuleIdRangePlugin;