minify_html 0.13.2-aarch64-linux → 0.13.3-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d7119ff7c3fc1eb3da1d348debf874d86f4ccc56b077de6c6e4f8350e9ee667
4
- data.tar.gz: bdb6e6ec831a5e0e7aeb960259de6d8d65084c98905af6e15536356d917e97e4
3
+ metadata.gz: 1cbd6bde91ec7acafba061a46a24cc6d846dbd2fc6c680427a6c4b7632032b1d
4
+ data.tar.gz: ba5a12b505952798880e790a1f7f439bffca479514bfb80fea419f2cb8b35e47
5
5
  SHA512:
6
- metadata.gz: 8167ef2d34a86eca4ec9bd65104d138199f2dbd98a604c8b95be1e0d04883672481ef4b9500c831e45a0699f55b3997dfb9f63d9f17ef29893c92e03ca053152
7
- data.tar.gz: 404f6540ccf62fa289bc4a1648e22ffa186f09cb83c77ac11c19320d49cdb8349367a83750709156c089553231ac0a0bcd4cbda805bf2c9fc710ed3a5e4bc661
6
+ metadata.gz: f022e02b93e7a2c7ce638f6ce9c06a8deb5f07e69d2f160267d76fe19af9326d47305bee0c29eea630c8e51f90f210728435c1bd2eeb5e17025cad5f028fc8ca
7
+ data.tar.gz: 90768e2c9d0df1749665c8d9c73f9828c3a30a25a1006522abd4ca48f445e4fc35fc981d40d2dceaf794eb84daa302add000cc37d1b40c897b50f097e122bffc
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.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">
26
+ <img width="400" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.13.3/core/average-speeds.png"><img width="400" alt="Chart showing compression of HTML minifiers" src="https://wilsonl.in/minify-html/bench/0.13.3/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.2"
64
+ minify-html = "0.13.3"
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.2/index.js
76
+ - Package: https://wilsonl.in/minify-html/deno/0.13.3/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.2/index.js";
83
+ import init, {minify} from "https://wilsonl.in/minify-html/deno/0.13.3/index.js";
84
84
 
85
85
  const encoder = new TextEncoder();
86
86
  const decoder = new TextDecoder();
@@ -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.2</version>
149
+ <version>0.13.3</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.2
4
+ version: 0.13.3
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Wilson Lin