minify_html 0.13.2-x86_64-darwin → 0.13.3-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: 473e30715fb5b77dc1db5a2366ced0b123f80efdc61a8ad3ffc089e740915f3f
4
- data.tar.gz: 5e9e0588c835f49f15973158eb2a84c951555a61d6a0b1ba2b4fea4d9e1a8888
3
+ metadata.gz: fef0d047438cb6e599a1b1a978fe630c644dcc35a2390d5705f1407b5c1dcf66
4
+ data.tar.gz: 9fd64f8b7285e0ec78e0ecf4a5aaaea1526b5b878c1020f7f640856578930473
5
5
  SHA512:
6
- metadata.gz: '0682f577cbdc7b7fe1104ef6c9bd6b393c59433224b06015cee8ef6527a7732311aa6d0bc98951efa5faac57ddf44e0f3c4a0213d95c0be899ae23c19e4dcd40'
7
- data.tar.gz: cdbf050773b5d1a0af74b48c674e1cc794e7f45d31c4fadbae880d421f9c93c85c68b625af90ddf1e70e326cc6bcb1acd471989b2b91432fa50d750fbf9deab9
6
+ metadata.gz: 74723df56e84cfe067e3cefe4e9db2a9c562eb700d5bbff6dfe84f25211f418a75e4b8831f412f268910f174018b11e11254e0227fc4196484bd27b78959f0cf
7
+ data.tar.gz: 1da8c28c432945ecb9adfddf303d59a34bba816bd04f54b538c3eadae34be198339c9a6fc4bb8b636c5380782cc349571d505921ab4766d6d1e6c2e69b68db00
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.13.2/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.13.2/core/average-sizes.png">
26
+ <img width="400" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.13.3/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.13.3/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.13.2"
64
+ minify-html = "0.13.3"
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.13.2/index.js
76
+ - Package: https://wilsonl.in/minify-html/deno/0.13.3/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.13.2/index.js";
83
+ import init, {minify} from "https://wilsonl.in/minify-html/deno/0.13.3/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.13.2</version>
149
+ <version>0.13.3</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.13.2
4
+ version: 0.13.3
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Wilson Lin