Skip to content

Commit

Permalink
Increase allowed bundlesizes
Browse files Browse the repository at this point in the history
This is promped by a number of failing PRs which are slightly over the allowed bundlesizes
(these limits were arbitrarily picked to be very close to the bundlesizes at that time).
Analysis of the bundles (via `auspice build --analyzeBundle`) shows that there are numerous
modules and bits of code which could be in separate bundles -- the main bundle is especially
problematic. A separate issue can be made to bring these down.
  • Loading branch information
jameshadfield committed May 5, 2020
1 parent 478f981 commit 90d91e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundlesize.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"files": [
{
"path": "./dist/auspice.bundle.js",
"maxSize": "180 kB"
"maxSize": "200 kB"
},
{
"path": "./dist/auspice.chunk.*.bundle.js",
"maxSize": "110 kB"
"maxSize": "120 kB"
}
]
}

0 comments on commit 90d91e9

Please sign in to comment.