Skip to content

Commit df75782

Browse files
committed
chore: trigger CI tests
1 parent 2131fe6 commit df75782

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/analyzer.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ function getViewerData(bundleStats, bundleDir, opts) {
4343
}
4444

4545
// Sometimes all the information is located in `children` array (e.g. problem in #10)
46-
if ((bundleStats.assets == null || bundleStats.assets.length === 0) &&
46+
if ((bundleStats.assets == null || bundleStats.assets.length === 0) &&
4747
bundleStats.children && bundleStats.children.length > 0) {
48-
const {children} = bundleStats;
49-
bundleStats = bundleStats.children[0];
48+
const {children} = bundleStats;
49+
bundleStats = bundleStats.children[0];
5050
// Sometimes if there are additional child chunks produced add them as child assets,
5151
// leave the 1st one as that is considered the 'root' asset.
5252
for (let i = 1; i < children.length; i++) {
@@ -299,3 +299,4 @@ function flatten(arr) {
299299
}
300300
return res;
301301
}
302+
// Trigger CI tests

0 commit comments

Comments
 (0)