minify_html 0.4.8 → 0.4.9

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: 5b9fe95f5911d013df14d43bccf9a19dbc062863ea0ac9e219ac8ca8813c248f
4
- data.tar.gz: 01d3f0afeb8c28af4268087d41a840ce1b0dd24c35721198dd5f850e47bc270f
3
+ metadata.gz: f93dea62d1b2887a69ec3aebd391f811b2572c20b442a0cd2cd1e51294b26ba8
4
+ data.tar.gz: 8f286096ba72a1f498775de828718eff4c78d3ddfe0105b366c99d5b2e04b8c5
5
5
  SHA512:
6
- metadata.gz: a8e5ced8bd458b232fe907efc450f5972279e41a945eb8f46008da2c9f88a12d28552e63c5d626c4dbf703591ada4ebe4890519d4da4cf7bd578246126e6eed0
7
- data.tar.gz: e43f7ec3c9dc7ad9a8441c0e5577bc77ce955125d5e5eeea2c6ec4a74a53581b6ec201933260b1283a87c2c28f8c1dc470c04270ee6dd21d4eba0124a582df2b
6
+ metadata.gz: 2cc6f55120f80375834197e3c718667fa14873f42ee4a7abee344553677e07b9b7d4ed2ecffe55c1a8de3d4370eaf7f66ffbc9303aa26174f1ba1ea341f46572
7
+ data.tar.gz: 7241c0177318b9bc6023c7129e556d7a5b74fb5e1ce8dbcd65488a1b2dfdc830ad48bf186c3927d9b7c1d9ff00eed699702403cf895ed6273b650bc2230b937c
data/README.md CHANGED
@@ -12,7 +12,7 @@ Comes with native bindings to Node.js, Python, Java, and Ruby.
12
12
 
13
13
  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)
14
14
 
15
- <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.8/core/average-speeds.png"> <img width="415" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.8/core/average-sizes.png">
15
+ <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.9/core/average-speeds.png"> <img width="415" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.9/core/average-sizes.png">
16
16
 
17
17
  ## Usage
18
18
 
@@ -22,9 +22,9 @@ Precompiled binaries are available for x86-64 Linux, macOS, and Windows.
22
22
 
23
23
  ##### Get
24
24
 
25
- [Linux](https://wilsonl.in/minify-html/bin/0.4.8-linux-x86_64) |
26
- [macOS](https://wilsonl.in/minify-html/bin/0.4.8-macos-x86_64) |
27
- [Windows](https://wilsonl.in/minify-html/bin/0.4.8-windows-x86_64.exe)
25
+ [Linux](https://wilsonl.in/minify-html/bin/0.4.9-linux-x86_64) |
26
+ [macOS](https://wilsonl.in/minify-html/bin/0.4.9-macos-x86_64) |
27
+ [Windows](https://wilsonl.in/minify-html/bin/0.4.9-windows-x86_64.exe)
28
28
 
29
29
  ##### Use
30
30
 
@@ -43,7 +43,7 @@ minify-html --src /path/to/src.html --out /path/to/output.min.html --css --js
43
43
 
44
44
  ```toml
45
45
  [dependencies]
46
- minify-html = { version = "0.4.8", features = ["js-esbuild"] }
46
+ minify-html = { version = "0.4.9", features = ["js-esbuild"] }
47
47
  ```
48
48
 
49
49
  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).
@@ -120,7 +120,7 @@ Add as a Maven dependency:
120
120
  <dependency>
121
121
  <groupId>in.wilsonl.minifyhtml</groupId>
122
122
  <artifactId>minify-html</artifactId>
123
- <version>0.4.8</version>
123
+ <version>0.4.9</version>
124
124
  </dependency>
125
125
  ```
126
126
 
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.4.8
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin