minify_html 0.14.0-x86_64-darwin → 0.15.0-x86_64-darwin

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: f1014556da3fc16127c4e1309297f789ed17684a823dd8e14454e6efd357b489
4
- data.tar.gz: 45bcd78d8414da4366d1ac808931d4ef757abbfdbd4a11cb8a28a9d79ff72460
3
+ metadata.gz: 33afcbb77ccd363732d57e1c5c9ffcbe12cb391f5bbfc52bd151fbdef1f98308
4
+ data.tar.gz: 76f1f8370af3553f46fbf1a0a53340680f55460079de7b4741cb9c920e4f7e19
5
5
  SHA512:
6
- metadata.gz: 933070aae5820060e2fcf55b31625452b2d78b2d5d63550eff07586af8f677779c8d32860348257c10e9ca7736eca26f281f0ed6da4b2b10fa9c7edb9c3a527d
7
- data.tar.gz: 57e6ac7ecda572f80f42c38f69994a4575811a2983cf59bbf043f58797c8e7217b1d96aa5d48975ffe3c9d0c31cf6ada3c513c82af49898fcee84442b6b56ab7
6
+ metadata.gz: 5f776a5b4008b4ce090b1d10c895caa1b9b0b1bcbb49bbda48df8163d6f654f5211da96c5ca435caf0999e450c93d5b767188b8d239736e87b4cd9a55f8e4b68
7
+ data.tar.gz: 4bea159bafe98420df0615c05a9ae03ce0f1b3175d7851d37cfb495de84cfc086c177f41858c08b68632769a2481bdd5055fed9c0df3931411c309e3fba8a4ff
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-darwin
6
6
  authors:
7
7
  - Wilson Lin