webpack/lib/optimize/ChunkModuleIdRangePlugin.js

69 lines
1.6 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";
const sortByIndex = (a, b) => {
return a.index - b.index;
};
const sortByIndex2 = (a, b) => {
return a.index2 - b.index2;
};
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 => {
2018-04-04 17:26:53 +08:00
const chunk = compilation.chunks.find(
chunk => chunk.name === options.name
);
if (!chunk) {
2018-02-25 09:00:20 +08:00
throw new Error(
`ChunkModuleIdRangePlugin: Chunk with name '${
options.name
}"' was not found`
2018-02-25 09:00:20 +08:00
);
}
let chunkModules;
2018-02-25 09:00:20 +08:00
if (options.order) {
chunkModules = Array.from(chunk.modulesIterable);
2018-02-25 09:00:20 +08:00
switch (options.order) {
case "index":
chunkModules.sort(sortByIndex);
break;
case "index2":
chunkModules.sort(sortByIndex2);
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.chunksIterable.has(chunk);
});
}
let currentId = options.start || 0;
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;