minify_html 0.5.0 → 0.5.2

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: b345a814633290c8d04adfd8c4092cd57a2ebf620917b034a2bfb53ff290daa9
4
- data.tar.gz: f7326e86591fb55e4cf95afecb867c6176bde562ea37cee12ef3d430e22bcd33
3
+ metadata.gz: 1bc22616bd026e202e49249c0aa07b93886d980ab4e5c38cde660f661a772cf6
4
+ data.tar.gz: 1067b6fee52653bb492ca53c494856cf52b40f3a243eb5d24006405a44be10f8
5
5
  SHA512:
6
- metadata.gz: cc3b5e11f8e3815d49ee894cf3554267d225262fcc1e16065a29bd9039cb21eed907edc3f21ac2cdd8b7b2c957d9716834ef57566c5cfb0b1110c6062c22682c
7
- data.tar.gz: 85c2986b16a7aea1b58f49719e70d687c5a4ea49a41d742969439f8ca6a5986f48b5d6a96d771c59431bde8786690b714a1c862a95b95fa5d595348b37038448
6
+ metadata.gz: c51a156b9426e87d125f269b08d90d28f51277629472cc57d713e55efa4c55edcf09ed6a54e265915e1298d70f08751542bd3065e17aa129cf27f5aff0019ea7
7
+ data.tar.gz: bfc7f36c7475279dee7b61576219fe8c471a72786f28818e0c03855bd146ed5f795357c678203778b4d14ae727f6c6c2e2f23d866f07f3388a7a1179ac7a8f32
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.0/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.2/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.0-linux-x86_64) |
36
- [macOS](https://wilsonl.in/minify-html/bin/0.5.0-macos-x86_64) |
37
- [Windows](https://wilsonl.in/minify-html/bin/0.5.0-windows-x86_64.exe)
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)
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.0", features = ["js-esbuild"] }
56
+ minify-html = { version = "0.5.2", 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.0</version>
127
+ <version>0.5.2</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.0
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin