minify_html 0.5.2 → 0.5.3

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: 1bc22616bd026e202e49249c0aa07b93886d980ab4e5c38cde660f661a772cf6
4
- data.tar.gz: 1067b6fee52653bb492ca53c494856cf52b40f3a243eb5d24006405a44be10f8
3
+ metadata.gz: fe44dec92cf8a9e85f6dba0eb13b538b1285d3556acb326cdc1aa2e7e489e6db
4
+ data.tar.gz: 68880213ec34e8a622e888c7dc9957c545917cc2483248c5646806edeb3d1d0f
5
5
  SHA512:
6
- metadata.gz: c51a156b9426e87d125f269b08d90d28f51277629472cc57d713e55efa4c55edcf09ed6a54e265915e1298d70f08751542bd3065e17aa129cf27f5aff0019ea7
7
- data.tar.gz: bfc7f36c7475279dee7b61576219fe8c471a72786f28818e0c03855bd146ed5f795357c678203778b4d14ae727f6c6c2e2f23d866f07f3388a7a1179ac7a8f32
6
+ metadata.gz: 78ca8e47a55eb6a2b05ca8446e301cf30cde354c825b37e8af7aa2dc385c5f2214509b947543dc7acb3003bb1873844d8ad18f1f0a06e7c309b4c3c90025e246
7
+ data.tar.gz: 6bee087ce415391cef7236bfa55fbeff4f691e614e2e1fdef90a41ae53039ecbf40163c92203192ad420a8ccb2b081eedd2b08482057b0f2b42bebae0783ae4c
data/README.md CHANGED
@@ -19,7 +19,7 @@ An HTML minifier meticulously optimised for both speed and effectiveness, writte
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 and compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.5.2/core/average-combined.png">
22
+ <img width="415" alt="Chart showing speed and compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.5.3/core/average-combined.png">
23
23
 
24
24
  Need even faster performance? Check the [one](https://github.com/wilsonzlin/minify-html/tree/one) branch.
25
25
 
@@ -32,9 +32,9 @@ Precompiled binaries are available for x86-64 Linux, macOS, and Windows.
32
32
 
33
33
  ### Get
34
34
 
35
- [Linux](https://wilsonl.in/minify-html/bin/0.5.2-linux-x86_64) |
36
- [macOS](https://wilsonl.in/minify-html/bin/0.5.2-macos-x86_64) |
37
- [Windows](https://wilsonl.in/minify-html/bin/0.5.2-windows-x86_64.exe)
35
+ [Linux](https://wilsonl.in/minify-html/bin/0.5.3-linux-x86_64) |
36
+ [macOS](https://wilsonl.in/minify-html/bin/0.5.3-macos-x86_64) |
37
+ [Windows](https://wilsonl.in/minify-html/bin/0.5.3-windows-x86_64.exe)
38
38
 
39
39
  ### Use
40
40
 
@@ -53,7 +53,7 @@ minify-html --src /path/to/src.html --out /path/to/output.min.html --css --js
53
53
 
54
54
  ```toml
55
55
  [dependencies]
56
- minify-html = { version = "0.5.2", features = ["js-esbuild"] }
56
+ minify-html = { version = "0.5.3", features = ["js-esbuild"] }
57
57
  ```
58
58
 
59
59
  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).
@@ -124,7 +124,7 @@ Add as a Maven dependency:
124
124
  <dependency>
125
125
  <groupId>in.wilsonl.minifyhtml</groupId>
126
126
  <artifactId>minify-html</artifactId>
127
- <version>0.5.2</version>
127
+ <version>0.5.3</version>
128
128
  </dependency>
129
129
  ```
130
130
 
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.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin