You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reason is ember-cli uses zlib.gzip w/o any options, so default compression (Z_DEFAULT_COMPRESSION=6) is used, but ember-cli-bundlesize uses gzip-size w/o any options, which uses zlib under the hood with level=9 in that case.
Ideally, ember-cli-bundlesize should use the same compression level as ember-cli. If you want to avoid breaking changes, you can provide an option to configure it.
The text was updated successfully, but these errors were encountered:
The reason is
ember-cli
useszlib.gzip
w/o any options, so default compression (Z_DEFAULT_COMPRESSION=6) is used, butember-cli-bundlesize
usesgzip-size
w/o any options, which uses zlib under the hood with level=9 in that case.Ideally,
ember-cli-bundlesize
should use the same compression level asember-cli
. If you want to avoid breaking changes, you can provide an option to configure it.The text was updated successfully, but these errors were encountered: