bundle-internals
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,5 @@ | ||
## 1.1.1 (05 August 2019) | ||
* fix crash when group doesn't have runtimeChunk | ||
## 1.1.0 (05 August 2019) | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "bundle-internals", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "The webpack plugin that collects a debug information about your webpack bundle (e.g. bundled modules, input entry points, and output assets)", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -268,3 +268,3 @@ const fs = require('fs'); | ||
name: group.runtimeChunk.name, | ||
module: this.getModuleId(group.runtimeChunk.entryModule), | ||
module: group.runtimeChunk.entryModule && this.getModuleId(group.runtimeChunk.entryModule), | ||
chunks: group.chunks.map(chunk => chunk.id) | ||
@@ -271,0 +271,0 @@ }); |
33258