minify_html 0.10.4 → 0.10.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: 16d2677bc2d2a45442e0422c62a9964c21c57fd28a27e7ed1656cd78e3df9a61
4
- data.tar.gz: d92367b17fb2d77586ed3e689f61b0908b0ea83d689d3db02e2e269c9e115e5c
3
+ metadata.gz: 8ef777e89ad6af70bb687c446e5a2a2a42b670ef884ce06698b6a30e40deb252
4
+ data.tar.gz: 6871fd2191c677b61cdeb03694c6af873af9783b07b7e45a6f2bacedc6283b4c
5
5
  SHA512:
6
- metadata.gz: 4fd7b1d229fd4abdbac779d6eb3674a1da36ef19927ad5f1e6c71e53d8239e15eb48b38e09437969519d5b0b5956988f41d403521ed7424a7515589b84ac1369
7
- data.tar.gz: bb5c4ca47e9f9fcf04a8d3bc6ffe5f004a9acfadc7c8ed26b1717b67545d5400c1eb1d6f8aa0c47369110c0bf88a16095056171e9d8d373066b69a96fbfc31a2
6
+ metadata.gz: a0176291dd17dfd64b97aa73e8fd694583a97a1ba712128292f10f000ad3ca17718125eab6a23db7ef9693d5338144f9fe99a5f328d8e55fa1a93d18fbe5f22f
7
+ data.tar.gz: 546e053a8ceb3add7261e0618132616eba06cb9638d8992b5b2800844df70b26a0e601d693e0ae0d443c53f88f766c697703346587be2036b05c137733605063
data/README.md CHANGED
@@ -23,7 +23,7 @@ View the [changelog](./CHANGELOG.md) to see the latest updates.
23
23
 
24
24
  Comparison with [html-minifier](https://github.com/kangax/html-minifier) and [minimize](https://github.com/Swaagie/minimize), run on the top web pages. [See the breakdown here.](./bench)
25
25
 
26
- <img width="400" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.10.4/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.10.4/core/average-sizes.png">
26
+ <img width="400" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.10.6/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.10.6/core/average-sizes.png">
27
27
 
28
28
  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.
29
29
 
@@ -36,10 +36,10 @@ Precompiled binaries are available for Linux, macOS, and Windows.
36
36
 
37
37
  ### Get
38
38
 
39
- [Linux x64](https://wilsonl.in/minify-html/bin/0.10.4-linux-x86_64) |
40
- [Linux ARM64](https://wilsonl.in/minify-html/bin/0.10.4-linux-arm64) |
41
- [macOS x64](https://wilsonl.in/minify-html/bin/0.10.4-macos-x86_64) |
42
- [Windows x64](https://wilsonl.in/minify-html/bin/0.10.4-windows-x86_64.exe)
39
+ [Linux x64](https://wilsonl.in/minify-html/bin/0.10.6-linux-x86_64) |
40
+ [Linux ARM64](https://wilsonl.in/minify-html/bin/0.10.6-linux-arm64) |
41
+ [macOS x64](https://wilsonl.in/minify-html/bin/0.10.6-macos-x86_64) |
42
+ [Windows x64](https://wilsonl.in/minify-html/bin/0.10.6-windows-x86_64.exe)
43
43
 
44
44
  ### Use
45
45
 
@@ -64,7 +64,7 @@ minify-html --keep-closing-tags --minify-css /path/to/**/*.html
64
64
 
65
65
  ```toml
66
66
  [dependencies]
67
- minify-html = "0.10.4"
67
+ minify-html = "0.10.6"
68
68
  ```
69
69
 
70
70
  ### Use
@@ -76,14 +76,14 @@ Check out the [docs](https://docs.rs/minify-html) for API and usage examples.
76
76
  <details>
77
77
  <summary><img width="24" src="https://wilsonl.in/minify-html/icon/deno.png"> <strong>Deno</strong></summary>
78
78
 
79
- - Package: https://wilsonl.in/minify-html/deno/0.10.4/index.js
79
+ - Package: https://wilsonl.in/minify-html/deno/0.10.6/index.js
80
80
  - Binding: [WASM](https://webassembly.org/)
81
81
  - Platforms: All
82
82
 
83
83
  ### Use
84
84
 
85
85
  ```ts
86
- import init, {minify} from "https://wilsonl.in/minify-html/deno/0.10.4/index.js";
86
+ import init, {minify} from "https://wilsonl.in/minify-html/deno/0.10.6/index.js";
87
87
 
88
88
  const encoder = new TextEncoder();
89
89
  const decoder = new TextDecoder();
@@ -149,7 +149,7 @@ Add as a Maven dependency:
149
149
  <dependency>
150
150
  <groupId>in.wilsonl.minifyhtml</groupId>
151
151
  <artifactId>minify-html</artifactId>
152
- <version>0.10.4</version>
152
+ <version>0.10.6</version>
153
153
  </dependency>
154
154
  ```
155
155
 
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.10.4
4
+ version: 0.10.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin