web_minify 1.0.3
web_minify: ^1.0.3 copied to clipboard
HTML, CSS and JavaScript minifiers in pure Dart. One call minifies a whole page, inline style and script blocks included, with no external dependencies.
1.0.3 #
- The three minifier constructors carry a documentation comment, which was the only gap left in the API reference.
1.0.2 #
minifyHtmlkeeps the space after a valueless attribute:<input required placeholder="x">no longer collapses to<input requiredplaceholder="x">.
1.0.1 #
- README: every
HtmlMinifier,CssMinifierandJsMinifieroption is now documented with its default.
1.0.0 #
- Initial release.
minifyminifies a whole file: an HTML page goes through in one piece, inline<style>and<script>blocks included.minifyHtml,minifyCssandminifyJsname a language outright.HtmlMinifier,CssMinifierandJsMinifiercarry the options.detectMinifyLanguageworks the language out from a path or from the content.web_minifycommand line front end.