This commit is contained in:
Wilson Lin 2021-01-06 21:57:41 +11:00
parent 915a9227f7
commit 52eaf10148
11 changed files with 16 additions and 16 deletions

View File

@ -7,7 +7,7 @@ readme = "README.md"
keywords = ["html", "compress", "minifier", "minify", "minification"]
categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"]
repository = "https://github.com/wilsonzlin/minify-html.git"
version = "0.3.11"
version = "0.3.12"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]

View File

@ -12,7 +12,7 @@ Comes with native bindings to Node.js, Python, Java, and Ruby.
Comparison with [html-minfier](https://github.com/kangax/html-minifier) and [minimize](https://github.com/Swaagie/minimize), run on the top web pages. [See the breakdown here.](./bench)
<img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.3.11/js/average-speeds.png"> <img width="415" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.3.11/js/average-sizes.png">
<img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.3.12/js/average-speeds.png"> <img width="415" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.3.12/js/average-sizes.png">
## Usage
@ -22,9 +22,9 @@ Precompiled binaries are available for x86-64 Linux, macOS, and Windows.
##### Get
[Linux](https://wilsonl.in/minify-html/bin/0.3.11-linux-x86_64) |
[macOS](https://wilsonl.in/minify-html/bin/0.3.11-macos-x86_64) |
[Windows](https://wilsonl.in/minify-html/bin/0.3.11-windows-x86_64.exe)
[Linux](https://wilsonl.in/minify-html/bin/0.3.12-linux-x86_64) |
[macOS](https://wilsonl.in/minify-html/bin/0.3.12-macos-x86_64) |
[Windows](https://wilsonl.in/minify-html/bin/0.3.12-windows-x86_64.exe)
##### Use
@ -43,7 +43,7 @@ minify-html --src /path/to/src.html --out /path/to/output.min.html
```toml
[dependencies]
minify-html = { version = "0.3.11", features = ["js-esbuild"] }
minify-html = { version = "0.3.12", features = ["js-esbuild"] }
```
Building with the `js-esbuild` feature requires the Go compiler to be installed as well, to build the [JS minifier](https://github.com/wilsonzlin/esbuild-rs).
@ -120,7 +120,7 @@ Add as a Maven dependency:
<dependency>
<groupId>in.wilsonl.minifyhtml</groupId>
<artifactId>minify-html</artifactId>
<version>0.3.11</version>
<version>0.3.12</version>
</dependency>
```

View File

@ -35,7 +35,7 @@ For more information on how the tests are fetched, see [fetch.js](./fetch.js).
On this [project's README](../README.md), average graphs are shown. Graphs showing per-test results are shown below:
<img width="435" alt="Chart showing speed of HTML minifiers per test" src="https://wilsonl.in/minify-html/bench/0.3.11/js/speeds.png"> <img width="435" alt="Chart showing effectiveness of HTML minifiers per test" src="https://wilsonl.in/minify-html/bench/0.3.11/js/sizes.png">
<img width="435" alt="Chart showing speed of HTML minifiers per test" src="https://wilsonl.in/minify-html/bench/0.3.12/js/speeds.png"> <img width="435" alt="Chart showing effectiveness of HTML minifiers per test" src="https://wilsonl.in/minify-html/bench/0.3.12/js/sizes.png">
Since speed depends on the input, speed charts show performance relative to the Node.js minify-html as a percentage.

View File

@ -1,7 +1,7 @@
[package]
publish = false
name = "minify-html-cli"
version = "0.3.11"
version = "0.3.12"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"

View File

@ -1,7 +1,7 @@
[package]
publish = false
name = "minify-html-java"
version = "0.3.11"
version = "0.3.12"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"

View File

@ -6,7 +6,7 @@
<groupId>in.wilsonl.minifyhtml</groupId>
<artifactId>minify-html</artifactId>
<version>0.3.11</version>
<version>0.3.12</version>
<name>minify-html</name>
<description>Fast and smart HTML + JS minifier</description>

View File

@ -1,7 +1,7 @@
[package]
publish = false
name = "minify-html-ffi"
version = "0.3.11"
version = "0.3.12"
authors = ["Wilson Lin <code@wilsonl.in>"]
license = "MIT"
edition = "2018"

View File

@ -1,6 +1,6 @@
{
"name": "@minify-html/js",
"version": "0.3.11",
"version": "0.3.12",
"description": "Fast and smart HTML + JS minifier",
"main": "index.node",
"types": "index.d.ts",

View File

@ -6,7 +6,7 @@ license = "MIT"
homepage = "https://github.com/wilsonzlin/minify-html"
readme = "README.md"
repository = "https://github.com/wilsonzlin/minify-html.git"
version = "0.3.11"
version = "0.3.12"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"

View File

@ -1,7 +1,7 @@
[package]
publish = false
name = "minify-html-ruby"
version = "0.3.11"
version = "0.3.12"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"

View File

@ -2,7 +2,7 @@ require 'rake'
Gem::Specification.new do |spec|
spec.name = "minify_html"
spec.version = "0.3.11"
spec.version = "0.3.12"
spec.authors = ["Wilson Lin"]
spec.email = ["code@wilsonl.in"]
spec.license = "MIT"