minify_html 0.6.1 → 0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2296251f24e9c0ece83df1ad6fc22f41b5adbfc1368b34b18b28b547cf35652c
4
- data.tar.gz: 8c2b2faeca970134afd59a9bbf0aa9d4367664d850715ae0de5c86e060a1749e
3
+ metadata.gz: c5816d9242706f2bec92f46bfb62b2f0a38f8a1067a8686e0b2ff7666a90ff6c
4
+ data.tar.gz: 2ef42086fe016c3f51f14ef04fd663e89fbcd83444082daa4c9435b2b656e9ae
5
5
  SHA512:
6
- metadata.gz: b1d6000d7d20fed0796ae8c6c25af8a265f0752a95d5de35abce16d8076bec9320ae668e10d6c888f834806604f30b3d3bd81ddeea90088bb952cf1e4b546de6
7
- data.tar.gz: e98302877ae98f160f97ea206a00591ff3ffe11b973f803b3eb0e3b54c1c7315ecd89252ab34926b01e4eb2fa480629cd5d670fe3cfa2f1b36c57a2ec24cc274
6
+ metadata.gz: ddfaaa45eb8329a88f86c822ca89a7721e58f44866550bf9a52d41d4ffdbcc54ba5e8009708b1585b97fc2ee53141a48f3f81197dc55e44eb0f3be74ed346ace
7
+ data.tar.gz: f2fe502299bf01f48acc049cee0066712835a02b834e904064b5526ba9f219cfea342460b61f16055a31ac45babadc704b5baf4ab95a43612782d86040785095
data/README.md CHANGED
@@ -19,8 +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.1/core/average-speeds.png">
23
- <img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.1/core/average-sizes.png">
22
+ <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.5/core/average-speeds.png"><img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.5/core/average-sizes.png">
24
23
 
25
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.
26
25
 
@@ -33,10 +32,10 @@ Precompiled binaries are available for Linux, macOS, and Windows.
33
32
 
34
33
  ### Get
35
34
 
36
- [Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.1-linux-x86_64) |
37
- [Linux ARM](https://wilsonl.in/minify-html/bin/0.6.1-linux-arm64) |
38
- [macOS](https://wilsonl.in/minify-html/bin/0.6.1-macos-x86_64) |
39
- [Windows](https://wilsonl.in/minify-html/bin/0.6.1-windows-x86_64.exe)
35
+ [Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.5-linux-x86_64) |
36
+ [Linux ARM](https://wilsonl.in/minify-html/bin/0.6.5-linux-arm64) |
37
+ [macOS](https://wilsonl.in/minify-html/bin/0.6.5-macos-x86_64) |
38
+ [Windows](https://wilsonl.in/minify-html/bin/0.6.5-windows-x86_64.exe)
40
39
 
41
40
  ### Use
42
41
 
@@ -55,7 +54,7 @@ minify-html --output /path/to/output.min.html --keep-closing-tags --minify-css /
55
54
 
56
55
  ```toml
57
56
  [dependencies]
58
- minify-html = { version = "0.6.1", features = ["js-esbuild"] }
57
+ minify-html = { version = "0.6.5", features = ["js-esbuild"] }
59
58
  ```
60
59
 
61
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).
@@ -126,7 +125,7 @@ Add as a Maven dependency:
126
125
  <dependency>
127
126
  <groupId>in.wilsonl.minifyhtml</groupId>
128
127
  <artifactId>minify-html</artifactId>
129
- <version>0.6.1</version>
128
+ <version>0.6.5</version>
130
129
  </dependency>
131
130
  ```
132
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.1
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin