updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions

12
node_modules/webpack/lib/Chunk.js generated vendored
View File

@@ -517,7 +517,7 @@ class Chunk {
* @param {Object} options the size display options
* @returns {number} the chunk size
*/
size(options) {
size(options = {}) {
return this.addMultiplierAndOverhead(this.modulesSize(), options);
}
@@ -688,7 +688,15 @@ class Chunk {
};
if (includeDirectChildren) {
addChildIdsByOrdersToMap(this);
const chunks = new Set();
for (const chunkGroup of this.groupsIterable) {
for (const chunk of chunkGroup.chunks) {
chunks.add(chunk);
}
}
for (const chunk of chunks) {
addChildIdsByOrdersToMap(chunk);
}
}
for (const chunk of this.getAllAsyncChunks()) {