2016-09-14 18:04:42 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2017-01-11 17:51:58 +08:00
|
|
|
"use strict";
|
2018-04-12 16:08:25 +08:00
|
|
|
|
|
|
|
const sortByIndex = (a, b) => {
|
|
|
|
return a.index - b.index;
|
|
|
|
};
|
|
|
|
|
|
|
|
const sortByIndex2 = (a, b) => {
|
|
|
|
return a.index2 - b.index2;
|
|
|
|
};
|
|
|
|
|
2017-01-04 23:13:05 +08:00
|
|
|
class ChunkModuleIdRangePlugin {
|
|
|
|
constructor(options) {
|
|
|
|
this.options = options;
|
|
|
|
}
|
2018-04-12 16:08:25 +08:00
|
|
|
|
2017-01-04 23:13:05 +08:00
|
|
|
apply(compiler) {
|
2017-02-05 07:38:56 +08:00
|
|
|
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
|
|
|
|
);
|
2018-04-12 16:08:25 +08:00
|
|
|
if (!chunk) {
|
2018-02-25 09:00:20 +08:00
|
|
|
throw new Error(
|
2018-04-12 16:08:25 +08:00
|
|
|
`ChunkModuleIdRangePlugin: Chunk with name '${
|
|
|
|
options.name
|
|
|
|
}"' was not found`
|
2018-02-25 09:00:20 +08:00
|
|
|
);
|
2018-04-12 16:08:25 +08:00
|
|
|
}
|
|
|
|
|
2017-01-04 23:13:05 +08:00
|
|
|
let chunkModules;
|
2018-02-25 09:00:20 +08:00
|
|
|
if (options.order) {
|
2018-04-12 16:08:25 +08:00
|
|
|
chunkModules = Array.from(chunk.modulesIterable);
|
2018-02-25 09:00:20 +08:00
|
|
|
switch (options.order) {
|
2017-01-04 23:13:05 +08:00
|
|
|
case "index":
|
2018-04-12 16:08:25 +08:00
|
|
|
chunkModules.sort(sortByIndex);
|
2017-01-04 23:13:05 +08:00
|
|
|
break;
|
|
|
|
case "index2":
|
2018-04-12 16:08:25 +08:00
|
|
|
chunkModules.sort(sortByIndex2);
|
2017-01-04 23:13:05 +08:00
|
|
|
break;
|
|
|
|
default:
|
2018-02-25 09:00:20 +08:00
|
|
|
throw new Error(
|
|
|
|
"ChunkModuleIdRangePlugin: unexpected value of order"
|
|
|
|
);
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
|
|
|
} else {
|
2018-02-25 09:00:20 +08:00
|
|
|
chunkModules = modules.filter(m => {
|
2018-04-12 16:08:25 +08:00
|
|
|
return m.chunksIterable.has(chunk);
|
2017-01-04 23:13:05 +08:00
|
|
|
});
|
2016-09-14 18:04:42 +08:00
|
|
|
}
|
2017-02-05 08:35:41 +08:00
|
|
|
|
2018-04-12 16:08:25 +08:00
|
|
|
let currentId = options.start || 0;
|
2018-02-25 09:00:20 +08:00
|
|
|
for (let i = 0; i < chunkModules.length; i++) {
|
2017-02-05 07:38:56 +08:00
|
|
|
const m = chunkModules[i];
|
2018-02-25 09:00:20 +08:00
|
|
|
if (m.id === null) {
|
2017-01-04 23:13:05 +08:00
|
|
|
m.id = currentId++;
|
|
|
|
}
|
2018-02-25 09:00:20 +08:00
|
|
|
if (options.end && currentId > options.end) break;
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
|
|
|
});
|
2016-09-14 18:04:42 +08:00
|
|
|
});
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = ChunkModuleIdRangePlugin;
|