diff options
| author | XhmikosR <[email protected]> | 2019-01-10 09:03:16 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-01-10 09:03:16 +0200 |
| commit | ff4c35f5664e1dcefad0c37ab402873c78f0e3ad (patch) | |
| tree | f04ed38ffce3e632ae70d2796f7624abdad5d940 | |
| parent | 39b76861a7afc2ccc90752a61fa5aa998e94761f (diff) | |
| download | bootstrap-ff4c35f5664e1dcefad0c37ab402873c78f0e3ad.tar.xz bootstrap-ff4c35f5664e1dcefad0c37ab402873c78f0e3ad.zip | |
Tighten bundlesize limits. (#28012)
| -rw-r--r-- | package.json | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package.json b/package.json index 587ca7c3d..8099c005d 100644 --- a/package.json +++ b/package.json @@ -166,19 +166,19 @@ }, { "path": "./dist/css/bootstrap-reboot.css", - "maxSize": "3 kB" + "maxSize": "2 kB" }, { "path": "./dist/css/bootstrap-reboot.min.css", - "maxSize": "3 kB" + "maxSize": "2 kB" }, { "path": "./dist/css/bootstrap.css", - "maxSize": "25.5 kB" + "maxSize": "25 kB" }, { "path": "./dist/css/bootstrap.min.css", - "maxSize": "23.5 kB" + "maxSize": "23 kB" }, { "path": "./dist/js/bootstrap.bundle.js", @@ -186,15 +186,15 @@ }, { "path": "./dist/js/bootstrap.bundle.min.js", - "maxSize": "25 kB" + "maxSize": "21 kB" }, { "path": "./dist/js/bootstrap.js", - "maxSize": "23 kB" + "maxSize": "22.5 kB" }, { "path": "./dist/js/bootstrap.min.js", - "maxSize": "15 kB" + "maxSize": "14.5 kB" } ], "jspm": { |
