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";
|
2017-01-04 23:13:05 +08:00
|
|
|
class ChunkModuleIdRangePlugin {
|
|
|
|
constructor(options) {
|
|
|
|
this.options = options;
|
|
|
|
}
|
|
|
|
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 => {
|
|
|
|
const chunk = this.chunks.find(chunk => chunk.name === options.name);
|
|
|
|
if (!chunk)
|
|
|
|
throw new Error(
|
|
|
|
"ChunkModuleIdRangePlugin: Chunk with name '" +
|
|
|
|
options.name +
|
|
|
|
"' was not found"
|
|
|
|
);
|
2017-01-04 23:13:05 +08:00
|
|
|
let currentId = options.start;
|
|
|
|
let chunkModules;
|
2018-02-25 09:00:20 +08:00
|
|
|
if (options.order) {
|
2017-01-04 23:13:05 +08:00
|
|
|
chunkModules = chunk.modules.slice();
|
2018-02-25 09:00:20 +08:00
|
|
|
switch (options.order) {
|
2017-01-04 23:13:05 +08:00
|
|
|
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"
|
|
|
|
);
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
|
|
|
} else {
|
2018-02-25 09:00:20 +08:00
|
|
|
chunkModules = modules.filter(m => {
|
2018-01-12 00:58:39 +08:00
|
|
|
return m.chunks.includes(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-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;
|