minify_html 0.13.1-x86_64-linux → 0.13.2-x86_64-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: 87bb5bd531727af1a77aa874cd817e356c68e46104d4ddcef4351743968b1a09
4
- data.tar.gz: 135807208132301978ed075025a61d2fe399b6916cd17db9548a25937ead00e5
3
+ metadata.gz: 9e76eed6b331e5c7b3ca95bbea9d14092f2355992c5d6d5b0302b828282a615a
4
+ data.tar.gz: 51ba75ccdab57b79a21660039e266caa200ee831036e5f2544b4c9fe4c40e80a
5
5
  SHA512:
6
- metadata.gz: 4f7798cdac9818e98fe2002e7876dac9e817b6a2c3100862de9ba280cd925635e6eaec1b74bc053c4f1be1337fc983e3dea027da92b3fdda4dc3c282efad4f0e
7
- data.tar.gz: 200cd53d5e3c1140efe50414075491d240e726e35eb9abf3f945ca6928422acd02be91be020e86bcc448335f0e682bead27cdb159e2114db0b7294825fe10fae
6
+ metadata.gz: 7e7f9159b60bd9f6d479e4a83739713e2f00e916d41051c7f022403e71df7638bb04794b715975749da3098013a35f0d839c9b241992e1554fcffa304481bacf
7
+ data.tar.gz: 3608a8d31b1c1164b5a32de607ff010dfb66acfcc94605a481b9211a30c7d6da0611f6854ece992b8261f74fdda2e2bda9bc34ba22d0e1499cc07704091807ba
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: x86_64-linux
6
6
  authors:
7
7
  - Wilson Lin