minify_html 0.4.6 → 0.4.7

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: c97cc97254c938f39f7bf1c7b4e9007fe6f68ea40f784fc6fc52601739bea991
4
- data.tar.gz: 283439161b791cd10d54700548ec7062ee728bcbd9970c43be4deff9d61438a4
3
+ metadata.gz: 79e109990a0e0ad04a0052d86a36d8ebbb1d463a9ccb089b61935b99dde4766e
4
+ data.tar.gz: 7864c3d63b93dd9e47de43d3ddd270861f63603388d095732bb99a90c6e8a2b8
5
5
  SHA512:
6
- metadata.gz: 8647ab190797c8f1cf83b364bdb23ecf6563476e1eb0e522e215950c2f50efb35d49ba7956024bea22569e296d0f066dd2c0f3ca814ffa39e2758a4015bea13c
7
- data.tar.gz: 54b778beee4d703f640172018359096ba1bb3f95d8be3780ca3519dadfe6a99d924c84b4a6a4e210c407615a9106a5d3f220e26d4df753714c4a1cab8cb1cb1a
6
+ metadata.gz: 3ecc6634fc4396f56e36b648bdaa94119ea0454c39d7c7d1ae8078046774406c89f6802f5ef62f97ab6f6fc45dcb37385b4295d3337ebc669f8341ebbb388873
7
+ data.tar.gz: 43e201ef5eaeb75949bcedf4db8690c25f5ee283ad6dddb8ac2bef79b31b5984c0fa4633a127e414ab7c5ce45fe3e5969dddcb53bae596da80bae0130f6f18c7
data/README.md CHANGED
@@ -12,7 +12,7 @@ Comes with native bindings to Node.js, Python, Java, and Ruby.
12
12
 
13
13
  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)
14
14
 
15
- <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.6/core/average-speeds.png"> <img width="415" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.6/core/average-sizes.png">
15
+ <img width="415" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.7/core/average-speeds.png"> <img width="415" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.4.7/core/average-sizes.png">
16
16
 
17
17
  ## Usage
18
18
 
@@ -22,9 +22,9 @@ Precompiled binaries are available for x86-64 Linux, macOS, and Windows.
22
22
 
23
23
  ##### Get
24
24
 
25
- [Linux](https://wilsonl.in/minify-html/bin/0.4.6-linux-x86_64) |
26
- [macOS](https://wilsonl.in/minify-html/bin/0.4.6-macos-x86_64) |
27
- [Windows](https://wilsonl.in/minify-html/bin/0.4.6-windows-x86_64.exe)
25
+ [Linux](https://wilsonl.in/minify-html/bin/0.4.7-linux-x86_64) |
26
+ [macOS](https://wilsonl.in/minify-html/bin/0.4.7-macos-x86_64) |
27
+ [Windows](https://wilsonl.in/minify-html/bin/0.4.7-windows-x86_64.exe)
28
28
 
29
29
  ##### Use
30
30
 
@@ -43,7 +43,7 @@ minify-html --src /path/to/src.html --out /path/to/output.min.html --css --js
43
43
 
44
44
  ```toml
45
45
  [dependencies]
46
- minify-html = { version = "0.4.6", features = ["js-esbuild"] }
46
+ minify-html = { version = "0.4.7", features = ["js-esbuild"] }
47
47
  ```
48
48
 
49
49
  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).
@@ -120,7 +120,7 @@ Add as a Maven dependency:
120
120
  <dependency>
121
121
  <groupId>in.wilsonl.minifyhtml</groupId>
122
122
  <artifactId>minify-html</artifactId>
123
- <version>0.4.6</version>
123
+ <version>0.4.7</version>
124
124
  </dependency>
125
125
  ```
126
126
 
@@ -398,7 +398,7 @@ Any entities in attribute values are decoded, and then the shortest representati
398
398
 
399
399
  - Double quoted, with any `"` encoded.
400
400
  - Single quoted, with any `'` encoded.
401
- - Unquoted, with `"`/`'` first character (if applicable), `>` last character (if applicable), and any whitespace encoded.
401
+ - Unquoted, with `"`/`'` first character (if applicable), any `>`, and any whitespace encoded.
402
402
 
403
403
  `class` and `d` attributes have their whitespace (after any decoding) trimmed and collapsed.
404
404
 
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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minify_html
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Lin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-07 00:00:00.000000000 Z
11
+ date: 2021-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fiddle