minify_html 0.13.1-arm64-darwin → 0.13.2-arm64-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: a6330de5ab54810ce2bbe67e2e42264cf34c3ce53d422606c4c809f4734b0644
4
- data.tar.gz: fde1e115c300062ab58dd7beb95c7826523073357b247a4b6b41b3f99907854d
3
+ metadata.gz: 9be81386cfe8fa3c9e60dc50522e6e21c38fa83bd357c5c69d6166c341bd0665
4
+ data.tar.gz: f9ca46c10af11c747e37e76f7ec30f175bcedc9a6e6bb59aca522743ee2f2de9
5
5
  SHA512:
6
- metadata.gz: 2fa19a76338ac23e9856372b843649637ec00f9551987c3238f7e4bfb0913c60bf91b666454e0632b547e422caf14b379a919a235a9b2305e69133176df399d4
7
- data.tar.gz: 8152162a2fbd6f6cba8f6da11e0d0f944a66e9e1bd87cbbc5f47703bb15f1d880c8d004c69fbbf05de62c1415e1dfa976fcfedf3fbc78a1d269493b13450850b
6
+ metadata.gz: b207e3d10727801b23f438fa914207cd4af7efcdcc60f0fb34aa859822a1a5e4bb6ba0dd39d5b194673da54a330203f8097efb98fd38f7b7f0dba2847e490985
7
+ data.tar.gz: 6fa89e506852e253545d5888133c060a50914d81a0b29fec1ac9eaecd87805568b428ed052b059e26a4a720d90afd06cff0fa38b26a5c96821b29f94137ce677
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
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: arm64-darwin
6
6
  authors:
7
7
  - Wilson Lin