minify_html 0.6.5 → 0.6.6

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: c5816d9242706f2bec92f46bfb62b2f0a38f8a1067a8686e0b2ff7666a90ff6c
4
- data.tar.gz: 2ef42086fe016c3f51f14ef04fd663e89fbcd83444082daa4c9435b2b656e9ae
3
+ metadata.gz: b4e03364d13b601c699a063f3a60064b122fffc6b6fd130c7b0f79880c8c5a93
4
+ data.tar.gz: aa87e4c69b9d02da8e2c84a98532cbe2f2e0550090e9362719564519107723dc
5
5
  SHA512:
6
- metadata.gz: ddfaaa45eb8329a88f86c822ca89a7721e58f44866550bf9a52d41d4ffdbcc54ba5e8009708b1585b97fc2ee53141a48f3f81197dc55e44eb0f3be74ed346ace
7
- data.tar.gz: f2fe502299bf01f48acc049cee0066712835a02b834e904064b5526ba9f219cfea342460b61f16055a31ac45babadc704b5baf4ab95a43612782d86040785095
6
+ metadata.gz: c05a4c7a93e509b4130e110deec0d1d798bb41c3ca39127e467e5170e872212ef8d374d065015c097e3796f4068e7660ccb58ffb412d713d5b7afa1837b83d2d
7
+ data.tar.gz: 24f48a30cf1b084510e3dea998972103856bf97df6c1c8791c45bb261db773bbcd2ba182f3e28c3e3322b7c7b796b2907aae7ca4270af6a73ebce777032d800d
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.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">
22
+ <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.6/core/average-speeds.png"><img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.6/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.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)
35
+ [Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.6-linux-x86_64) |
36
+ [Linux ARM](https://wilsonl.in/minify-html/bin/0.6.6-linux-arm64) |
37
+ [macOS](https://wilsonl.in/minify-html/bin/0.6.6-macos-x86_64) |
38
+ [Windows](https://wilsonl.in/minify-html/bin/0.6.6-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.5", features = ["js-esbuild"] }
57
+ minify-html = { version = "0.6.6", 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.5</version>
128
+ <version>0.6.6</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.5
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin