minify_html 0.6.9 → 0.6.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad2b02f242030707bf0a464b960c607b0d53072aecfc264cec925c1e3059d86a
4
- data.tar.gz: eb5acbe28866cca0e8217e057cbe1fb6c6e7e11bb4ad7a90f7498e2419388e40
3
+ metadata.gz: a9ded6796b3b873f159ff1b31e47407ab61891afec23899a12e73247c635197d
4
+ data.tar.gz: 4a8eeecfb73b06b02e8745ab000c4ab64cabcefc2b5b4a66c3cce6b9cc53f093
5
5
  SHA512:
6
- metadata.gz: dbf61cd9b0a466431cf47a6f40a187ec4b4289497853a65fd5f36a422ea727be9650c18ffb54631f03512b3b6fe302271d6193b0facf66c43eef56a1dc6b6da0
7
- data.tar.gz: a9861b72300ce112e94688828bd8be160c89c9eefb08916b537f58fc91848ef74b637ae6029ba1fb106fa85217b82d8d1a3cd25124942d48eb5da8a2cb3bd438
6
+ metadata.gz: c0c9a244d10217fbb4367059dcedfce5478e7f33043348daba430203a7b5b8fa65d4d56fb0e3663c82b0c4e3aad50cd30297cb7e3e557ffb6750ab65d313e72b
7
+ data.tar.gz: 8204dba130497fef7336f6ac6f764b8cbfb4db7696fbe711ff7f50f6b9b5fdaea5ef576f3c315a616acfd13ac7c59a0c0bb3eefa3b594d79be2523fdb72dd3cd
data/README.md CHANGED
@@ -19,7 +19,7 @@ A Rust HTML minifier meticulously optimised for speed and effectiveness, with bi
19
19
 
20
20
  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)
21
21
 
22
- <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.9/core/average-speeds.png"><img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.9/core/average-sizes.png">
22
+ <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.10/core/average-speeds.png"><img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.10/core/average-sizes.png">
23
23
 
24
24
  The [onepass](https://github.com/wilsonzlin/minify-html/tree/master/rust/onepass) variant is even more optimised for speed. See its [README](https://github.com/wilsonzlin/minify-html/tree/master/rust/onepass) for more details.
25
25
 
@@ -32,10 +32,10 @@ Precompiled binaries are available for Linux, macOS, and Windows.
32
32
 
33
33
  ### Get
34
34
 
35
- [Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.9-linux-x86_64) |
36
- [Linux ARM](https://wilsonl.in/minify-html/bin/0.6.9-linux-arm64) |
37
- [macOS](https://wilsonl.in/minify-html/bin/0.6.9-macos-x86_64) |
38
- [Windows](https://wilsonl.in/minify-html/bin/0.6.9-windows-x86_64.exe)
35
+ [Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.10-linux-x86_64) |
36
+ [Linux ARM](https://wilsonl.in/minify-html/bin/0.6.10-linux-arm64) |
37
+ [macOS](https://wilsonl.in/minify-html/bin/0.6.10-macos-x86_64) |
38
+ [Windows](https://wilsonl.in/minify-html/bin/0.6.10-windows-x86_64.exe)
39
39
 
40
40
  ### Use
41
41
 
@@ -54,7 +54,7 @@ minify-html --output /path/to/output.min.html --keep-closing-tags --minify-css /
54
54
 
55
55
  ```toml
56
56
  [dependencies]
57
- minify-html = { version = "0.6.9", features = ["js-esbuild"] }
57
+ minify-html = { version = "0.6.10", features = ["js-esbuild"] }
58
58
  ```
59
59
 
60
60
  Building with the `js-esbuild` feature requires the Go compiler to be installed as well, to build the [JS and CSS minifier](https://github.com/wilsonzlin/esbuild-rs).
@@ -125,7 +125,7 @@ Add as a Maven dependency:
125
125
  <dependency>
126
126
  <groupId>in.wilsonl.minifyhtml</groupId>
127
127
  <artifactId>minify-html</artifactId>
128
- <version>0.6.9</version>
128
+ <version>0.6.10</version>
129
129
  </dependency>
130
130
  ```
131
131
 
data/lib/linux-ruby2.5 CHANGED
Binary file
data/lib/linux-ruby2.6 CHANGED
Binary file
data/lib/linux-ruby2.7 CHANGED
Binary file
data/lib/macos-ruby2.5 CHANGED
Binary file
data/lib/macos-ruby2.6 CHANGED
Binary file
data/lib/macos-ruby2.7 CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minify_html
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.9
4
+ version: 0.6.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin