Require opt-in to enable optimizations #175
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Checklist
:)
.This requires the user to explicitly enable optimizations through
--optimize
or by using theoptimize
option inTrunk.toml
for potentially expensive optimizations to run.This option is sorely needed, because optimizations might be enabled through static configuration in a
<link data-wasm-opt="z">
statement inindex.html
, but you don't necessarily want that to run while working locally. So without another toggle you constantly have to edit yourindex.html
file instead.This is also a breaking change.
It might also be desirable to implicitly enable optimizations if
--release
is specified, but in that case I'd like to have a--no-optimize
option as well, because I sometimes want to enable release builds while developing locally without optimizing as well. I'd prefer to add this separate to this PR though, because I haven't fully wrapped my head around theconfig
module yet and how to best make multiple options interoperate.