minify_html 0.14.0-x64-mingw-ucrt → 0.15.0-x64-mingw-ucrt

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: c8977e12fdca5813c0f53fbe27787b745ef63595f2ce0e132619bcc3dbd2c3f3
4
- data.tar.gz: 76028bc74cbbd89817cf2d71962a5e3848322482c0d6508a3d73c83eb058c533
3
+ metadata.gz: 758287f0010696805a3d61c792d4d3f077045e9216b7047c459107dd832c2d7f
4
+ data.tar.gz: 1d78bf636c2fd0ddcb3c043444bb752a7f23acf0ee1abef152aa4c49dd07993f
5
5
  SHA512:
6
- metadata.gz: ec11ecb3ad017ec06b48e3ca84a3219ba29a4e53e0b1ad3fada75d2f379f44a8da62da836b416d54fcdfd110bd50407e4b4ae68d63030841777bb6e3f5c9a7e6
7
- data.tar.gz: 8fe6db8d52fec38db2b0563ae369ca92372d7109b22e7dd1ebe68ae00ebc3143da3506794c36652bc99c857a2d28c9202377f0d22a1ec2c39516e642be7fe8ac
6
+ metadata.gz: 750dab5cd75082ebcef16907ab91724f893b0de2e49c391ff8f14e15d1f27001500dcc20a949202817cc98b184ec2bec1d07da878973396a2b207b9ed55d6d78
7
+ data.tar.gz: 0cff292c03c2a82398a9fa016ecb9e7ee6d86519a5a5d78a5017943bee7d64f603e566dcaa086d69682473a562452e1c855ee642d0df506d54ecfabd1b3dbe6f
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
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: x64-mingw-ucrt
6
6
  authors:
7
7
  - Wilson Lin