minify_html 0.14.0-aarch64-linux → 0.15.0-aarch64-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: d58fbacaae0ac3582772f48488c7f7a2cbb50d91c77373834610f0ccd1e20aac
4
- data.tar.gz: f108eea79bec96cd42b4bf55a14414f0f22bd3d958f27bb2cf5e4e5b871b8eab
3
+ metadata.gz: 3f7b4af1d8db11e12e28973fa74d0749ed8e7efc787d8ff4b515ae0b7b10723d
4
+ data.tar.gz: ecbaaca69af75d591e694e0e95645f74d63815427fc7ec36b1e7f1b4f6abd533
5
5
  SHA512:
6
- metadata.gz: e5db9e654b94689f52bfe5e7ae9d7550e6cb41e209f7dcb3f51220b8ecb2f3ea83afa0de4afa7ba641bd98ee6211ab7daddfbfa3716b4297bdd12017c5bbfd3f
7
- data.tar.gz: 7b0ef88947e95aadeff6ca4096bb0aef76ec7f05c803f3044855ecc86916e778760b90427ac56d33cd28fc8f20e48759e694a0bece7f54565d8d66733bc458ae
6
+ metadata.gz: f699040632818c0649cc65696dba1cc9dfeb9c2a722313a074d3a1819e94056442d2593c113ec6da70b6f37e5338e6bb01db5f662b62a4d0e61c01d57640999c
7
+ data.tar.gz: f98e31a5756c44b1eecfd2b4441d8aae198c9dec4c885a8783948aa65fde2b7de7e318de9e105f5661cb4aa6688b67ba00c84bad4ca58cd3414b687c47ce647f
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: aarch64-linux
6
6
  authors:
7
7
  - Wilson Lin