minify_html 0.14.0-x86_64-linux → 0.15.0-x86_64-linux

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: c892e203b71b1e4d9663c46849f19f1883a9d0856fb9b3f2948dd05f1f18db81
4
- data.tar.gz: 1cf7f42138ad6b279582de803e63296791aa9642b548e9e2d21ed3853f2afc5a
3
+ metadata.gz: 58f2024d595fefa0b145c705f07e938ea1fd333d695450046b94c6443f3d7d17
4
+ data.tar.gz: d6c42372a6ec8879d2fecd04e1f59fecbd90df9352472c8f20651d020d9c3e2a
5
5
  SHA512:
6
- metadata.gz: de53643c15d28cead8ba50e67d774998d1a67345d5626547de554e03021c67e852f1150949427ac8673c502e1fc0e2c09eebd99b4d7d0810154fd3dcf0bdffe0
7
- data.tar.gz: 999068dbe1c24a09449ccf6a019cff8ffe550649d671995a03e2fff45ed137a4d6b92f7e0f03da0cbf294d63d800e6e8a9e75478537a4d892c838baa91582160
6
+ metadata.gz: f1fadb59ab3015c91b00343623c3b29f3845fbf8045378ec40d0c3d97c54b534e7a46be6e63e3b6818fbae06361eab5a8eacdde43cb43658f84e3850b50aaff5
7
+ data.tar.gz: a4916cc4cb332c4a9d20c429e3d91e25971fe7f7783d2c244e737ba338246e9cb0b3a92f56da42cca658f5faa2ef7c7fa3475d0c1de7a20e4e96bf7d6284d5e5
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.14.0/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.14.0/core/average-sizes.png">
26
+ <img width="400" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.15.0/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.15.0/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
 
@@ -61,7 +61,7 @@ minhtml --keep-closing-tags --minify-css /path/to/**/*.html
61
61
 
62
62
  ```toml
63
63
  [dependencies]
64
- minify-html = "0.14.0"
64
+ minify-html = "0.15.0"
65
65
  ```
66
66
 
67
67
  ### Use
@@ -73,14 +73,14 @@ Check out the [docs](https://docs.rs/minify-html) for API and usage examples.
73
73
  <details>
74
74
  <summary><img width="24" src="https://wilsonl.in/minify-html/icon/deno.png"> <strong>Deno</strong></summary>
75
75
 
76
- - Package: https://wilsonl.in/minify-html/deno/0.14.0/index.js
76
+ - Package: https://wilsonl.in/minify-html/deno/0.15.0/index.js
77
77
  - Binding: [WASM](https://webassembly.org/)
78
78
  - Platforms: All
79
79
 
80
80
  ### Use
81
81
 
82
82
  ```ts
83
- import init, {minify} from "https://wilsonl.in/minify-html/deno/0.14.0/index.js";
83
+ import init, {minify} from "https://wilsonl.in/minify-html/deno/0.15.0/index.js";
84
84
 
85
85
  const encoder = new TextEncoder();
86
86
  const decoder = new TextDecoder();
@@ -146,7 +146,7 @@ Add as a Maven dependency:
146
146
  <dependency>
147
147
  <groupId>in.wilsonl.minifyhtml</groupId>
148
148
  <artifactId>minify-html</artifactId>
149
- <version>0.14.0</version>
149
+ <version>0.15.0</version>
150
150
  </dependency>
151
151
  ```
152
152
 
Binary file
Binary file
Binary file
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.14.0
4
+ version: 0.15.0
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Wilson Lin