minify_html 0.13.1-x64-mingw-ucrt → 0.13.2-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: cfe5b9b7cdf3b6671b2a7c32b2c74b9c06c702a61b74bbeefb8a283378ec7550
4
- data.tar.gz: 181f1b98e37840c401d9f30412711255e3948e2c5b26f822d9704da2a8cdaaea
3
+ metadata.gz: 2dcd050b89b02b107f55ef97b775eac7c5d23c38655c21a6858e6f32f2123316
4
+ data.tar.gz: a900372c7adaf168e44da002c31ce7aacff57021c8c59add42bd20978fd5ca6f
5
5
  SHA512:
6
- metadata.gz: 373ccd87969271d46ff610a80a0d5fbfddb5a6960d0a0809d8c155e6607e04f28e823ed012673ee801572a13e8a0eee42f85c0a512450e2f9b7a3e0d81832d90
7
- data.tar.gz: f3c479da743d39d63649b5f548eed193ad5e0172022c223ccecf07f3584bfca961b943d54b057dd540ded90cf8d827eba80b801934d09c93d45c245a36d2ac24
6
+ metadata.gz: f4d04073c71dd02257b1f69dce51736ad65c89151c3721787fc6760946d0a7b00437c68bf70aa0e4f0036ea7300e4f5295c3ad256f957ec2e77ff1089647bc3e
7
+ data.tar.gz: 1628850209fb5ed9ccba95a8a3c8133df535ae76b17c80fc7872bce6ca8e5994ced53fe4813f2dc884e40953f815bfee2a93ab8f76355c6e49b0da40cbc496ea
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.1/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.13.1/core/average-sizes.png">
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">
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.1"
64
+ minify-html = "0.13.2"
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.1/index.js
76
+ - Package: https://wilsonl.in/minify-html/deno/0.13.2/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.1/index.js";
83
+ import init, {minify} from "https://wilsonl.in/minify-html/deno/0.13.2/index.js";
84
84
 
85
85
  const encoder = new TextEncoder();
86
86
  const decoder = new TextDecoder();
@@ -136,7 +136,7 @@ All [`Cfg` fields](https://docs.rs/minify-html/latest/minify_html/struct.Cfg.htm
136
136
 
137
137
  - Package: [in.wilsonl.minifyhtml](https://search.maven.org/artifact/in.wilsonl.minifyhtml/minify-html)
138
138
  - Binding: [JNI](https://github.com/jni-rs/jni-rs)
139
- - Platforms: Linux, macOS, Windows; Java 7 and higher
139
+ - Platforms: Linux (ARM64 and x64), macOS (ARM64 and x64), Windows (x64); Java 7 and higher
140
140
 
141
141
  ### Get
142
142
 
@@ -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.1</version>
149
+ <version>0.13.2</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.13.1
4
+ version: 0.13.2
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Wilson Lin