minify_html 0.6.6 → 0.6.7

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: b4e03364d13b601c699a063f3a60064b122fffc6b6fd130c7b0f79880c8c5a93
4
- data.tar.gz: aa87e4c69b9d02da8e2c84a98532cbe2f2e0550090e9362719564519107723dc
3
+ metadata.gz: d5971cbee62112f6d41555963987e1901d9e874c60d3368c0abbdf50dc75e67d
4
+ data.tar.gz: 783684df13080191cbf214dfa908ad5e69c33f928ba92e833fe0c0c129ba4ddb
5
5
  SHA512:
6
- metadata.gz: c05a4c7a93e509b4130e110deec0d1d798bb41c3ca39127e467e5170e872212ef8d374d065015c097e3796f4068e7660ccb58ffb412d713d5b7afa1837b83d2d
7
- data.tar.gz: 24f48a30cf1b084510e3dea998972103856bf97df6c1c8791c45bb261db773bbcd2ba182f3e28c3e3322b7c7b796b2907aae7ca4270af6a73ebce777032d800d
6
+ metadata.gz: ca795c3ee98f438c676bd78bdca1ec9025f50fb11df12975ac68bca702afcc692672b738671fe8a8f8f0de9dc92ba9b1f85ee265c8b9538f8c2606466584eb02
7
+ data.tar.gz: 0b80707fd0451d6bf27573fdffa861e8e34e99214a43c94124bf3d0987889651f42dfcd4b9587c1e71972309e4720776acd6afd2c31f54e7407fac71d161f2f8
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.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">
22
+ <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.7/core/average-speeds.png"><img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.7/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.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)
35
+ [Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.7-linux-x86_64) |
36
+ [Linux ARM](https://wilsonl.in/minify-html/bin/0.6.7-linux-arm64) |
37
+ [macOS](https://wilsonl.in/minify-html/bin/0.6.7-macos-x86_64) |
38
+ [Windows](https://wilsonl.in/minify-html/bin/0.6.7-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.6", features = ["js-esbuild"] }
57
+ minify-html = { version = "0.6.7", 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.6</version>
128
+ <version>0.6.7</version>
129
129
  </dependency>
130
130
  ```
131
131
 
@@ -134,7 +134,6 @@ Add as a Maven dependency:
134
134
  ```java
135
135
  import in.wilsonl.minifyhtml.Configuration;
136
136
  import in.wilsonl.minifyhtml.MinifyHtml;
137
- import in.wilsonl.minifyhtml.SyntaxException;
138
137
 
139
138
  Configuration cfg = new Configuration.Builder()
140
139
  .setKeepHtmlAndHeadOpeningTags(true)
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minify_html
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.6
4
+ version: 0.6.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-09 00:00:00.000000000 Z
11
+ date: 2021-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fiddle