Skip to content

v0.0.31

Latest

Choose a tag to compare

@keithamus keithamus released this 28 Aug 17:45
· 33 commits to main since this release
ff15f9c

Headline changes

The biggest part of this release, aside from continued optimisations and supporting more and more esoteric CSS (shout out to ::-moz-svg-outer-svg-anon-child) this release adds two big improvements to minification:

  • RemoveOveriddenDeclarations will automatically remove declarations inside of a rule which later get overridden. For example width:10px;width:20px will minify to width:20px. This also works for shorthands, so for example margin-left:10px;margin:20px will minify to margin:20px.
  • ReduceShorthandValues will automatically (safely!) rewrite declarations to their shorthand equivalents. For example margin-left:10px;margin-right:10px;margin-bottom:10px;margin-top:10px will be rewritten as margin:10px.

What's Changed

Full Changelog: v0.0.30...v0.0.31