hyperbuild 0.1.11 → 0.1.12
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 +4 -4
- data/README.md +8 -6
- 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 +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4cad15272abd95d79881d6d56d99f743627436488cddfbcf1bee632b912e1f58
|
|
4
|
+
data.tar.gz: cd671f2a74fc1b577396cb04411431b5f1865f363747a0a578673551a011e790
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '05259be3bcb59ead8c44b7574f6e6e2a21b4cb2f82fbea9ee54608fbb5b31f5fd4f24071be31d509b215190c77fb9155364a8a8b41111093a9b6c62d2f107af1'
|
|
7
|
+
data.tar.gz: afada323b7945068258a5c956c008f68cdde3b91bef2a6976927510ef4da3f39fa6db0ec25a30ff15fb891a5d0e2fc8764ae14a4289bb32f11666060bac845d2
|
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Available as:
|
|
|
17
17
|
|
|
18
18
|
Speed and effectiveness of Node.js version compared to [html-minfier](https://github.com/kangax/html-minifier) and [minimize](https://github.com/Swaagie/minimize), run on popular already-minified web pages. See [bench](./bench) folder for more details.
|
|
19
19
|
|
|
20
|
-
<img width="435" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/hyperbuild/bench/0.1.
|
|
20
|
+
<img width="435" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/hyperbuild/bench/0.1.12/average-speeds.png"> <img width="435" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/hyperbuild/bench/0.1.12/average-sizes.png">
|
|
21
21
|
|
|
22
22
|
## Usage
|
|
23
23
|
|
|
@@ -27,9 +27,9 @@ Precompiled binaries are available for x86-64 Windows, macOS, and Linux.
|
|
|
27
27
|
|
|
28
28
|
##### Get
|
|
29
29
|
|
|
30
|
-
[Windows](https://wilsonl.in/hyperbuild/bin/0.1.
|
|
31
|
-
[macOS](https://wilsonl.in/hyperbuild/bin/0.1.
|
|
32
|
-
[Linux](https://wilsonl.in/hyperbuild/bin/0.1.
|
|
30
|
+
[Windows](https://wilsonl.in/hyperbuild/bin/0.1.12-windows-x86_64.exe) |
|
|
31
|
+
[macOS](https://wilsonl.in/hyperbuild/bin/0.1.12-macos-x86_64) |
|
|
32
|
+
[Linux](https://wilsonl.in/hyperbuild/bin/0.1.12-linux-x86_64)
|
|
33
33
|
|
|
34
34
|
##### Use
|
|
35
35
|
|
|
@@ -46,7 +46,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html
|
|
|
46
46
|
|
|
47
47
|
```toml
|
|
48
48
|
[dependencies]
|
|
49
|
-
hyperbuild = "0.1.
|
|
49
|
+
hyperbuild = "0.1.12"
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
##### Use
|
|
@@ -150,7 +150,7 @@ Add as a Maven dependency:
|
|
|
150
150
|
<dependency>
|
|
151
151
|
<groupId>in.wilsonl.hyperbuild</groupId>
|
|
152
152
|
<artifactId>hyperbuild</artifactId>
|
|
153
|
-
<version>0.1.
|
|
153
|
+
<version>0.1.12</version>
|
|
154
154
|
</dependency>
|
|
155
155
|
```
|
|
156
156
|
|
|
@@ -440,6 +440,8 @@ Numeric entities that do not refer to a valid [Unicode Scalar Value](https://www
|
|
|
440
440
|
|
|
441
441
|
If an entity is unintentionally formed after decoding, the leading ampersand is encoded, e.g. `&amp;` becomes `&amp;`. This is done as `&` is equal to or shorter than all other entity representations of characters part of an entity (`[&#a-zA-Z0-9;]`), and there is no other conflicting entity name that starts with `amp`.
|
|
442
442
|
|
|
443
|
+
It's possible to get an unintentional entity after removing comments, e.g. `&am<!-- -->p`.
|
|
444
|
+
|
|
443
445
|
Left chevrons after any decoding in text are encoded to `<` if possible or `<` otherwise.
|
|
444
446
|
|
|
445
447
|
### Comments
|
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: hyperbuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wilson Lin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-07-
|
|
11
|
+
date: 2020-07-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fiddle
|