minify_html 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -8
- data/lib/linux-ruby2.5 +0 -0
- data/lib/linux-ruby2.6 +0 -0
- data/lib/linux-ruby2.7 +0 -0
- data/lib/macos-ruby2.5 +0 -0
- data/lib/macos-ruby2.6 +0 -0
- data/lib/macos-ruby2.7 +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37fc43eb592e764f23574ebbf4b8b7495f87c6656594afc0014c723bca274219
|
4
|
+
data.tar.gz: 9d6b46251ab1555ea07c0db14e655bc3fb3a9aa4b99ff2e97779496c77428e50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6d860d8e6d3f9adf9164c031d18475647b1cf1ccf3a7c42f29149385f5ccc39b1736e761f5ba1c34301c82fd0f2dc78e86f28e47cfa5b9e02a907bb1bbf81bb
|
7
|
+
data.tar.gz: 60cc023e5660fe2e741524d1f85a1255ecea0b7dc685448441463737f5a53931d9aa808468e892fff4953201011c674ce011aaf5cdbe59f5beb91240938e36e7
|
data/README.md
CHANGED
@@ -19,8 +19,7 @@ A Rust HTML minifier meticulously optimised for speed and effectiveness, with bi
|
|
19
19
|
|
20
20
|
Comparison with [html-minfier](https://github.com/kangax/html-minifier) and [minimize](https://github.com/Swaagie/minimize), run on the top web pages. [See the breakdown here.](./bench)
|
21
21
|
|
22
|
-
<img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.
|
23
|
-
<img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.1/core/average-sizes.png">
|
22
|
+
<img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.2/core/average-speeds.png"><img width="415" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.6.2/core/average-sizes.png">
|
24
23
|
|
25
24
|
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.
|
26
25
|
|
@@ -33,10 +32,10 @@ Precompiled binaries are available for Linux, macOS, and Windows.
|
|
33
32
|
|
34
33
|
### Get
|
35
34
|
|
36
|
-
[Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.
|
37
|
-
[Linux ARM](https://wilsonl.in/minify-html/bin/0.6.
|
38
|
-
[macOS](https://wilsonl.in/minify-html/bin/0.6.
|
39
|
-
[Windows](https://wilsonl.in/minify-html/bin/0.6.
|
35
|
+
[Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.2-linux-x86_64) |
|
36
|
+
[Linux ARM](https://wilsonl.in/minify-html/bin/0.6.2-linux-arm64) |
|
37
|
+
[macOS](https://wilsonl.in/minify-html/bin/0.6.2-macos-x86_64) |
|
38
|
+
[Windows](https://wilsonl.in/minify-html/bin/0.6.2-windows-x86_64.exe)
|
40
39
|
|
41
40
|
### Use
|
42
41
|
|
@@ -55,7 +54,7 @@ minify-html --output /path/to/output.min.html --keep-closing-tags --minify-css /
|
|
55
54
|
|
56
55
|
```toml
|
57
56
|
[dependencies]
|
58
|
-
minify-html = { version = "0.6.
|
57
|
+
minify-html = { version = "0.6.2", features = ["js-esbuild"] }
|
59
58
|
```
|
60
59
|
|
61
60
|
Building with the `js-esbuild` feature requires the Go compiler to be installed as well, to build the [JS and CSS minifier](https://github.com/wilsonzlin/esbuild-rs).
|
@@ -126,7 +125,7 @@ Add as a Maven dependency:
|
|
126
125
|
<dependency>
|
127
126
|
<groupId>in.wilsonl.minifyhtml</groupId>
|
128
127
|
<artifactId>minify-html</artifactId>
|
129
|
-
<version>0.6.
|
128
|
+
<version>0.6.2</version>
|
130
129
|
</dependency>
|
131
130
|
```
|
132
131
|
|
data/lib/linux-ruby2.5
CHANGED
Binary file
|
data/lib/linux-ruby2.6
CHANGED
Binary file
|
data/lib/linux-ruby2.7
CHANGED
Binary file
|
data/lib/macos-ruby2.5
CHANGED
Binary file
|
data/lib/macos-ruby2.6
CHANGED
Binary file
|
data/lib/macos-ruby2.7
CHANGED
Binary file
|