This commit is contained in:
Wilson Lin 2020-01-17 09:16:28 +11:00
parent cc90aec37e
commit af8e93684a
5 changed files with 9 additions and 9 deletions

2
Cargo.lock generated
View File

@ -88,7 +88,7 @@ dependencies = [
[[package]]
name = "hyperbuild"
version = "0.0.13"
version = "0.0.14"
dependencies = [
"cascade 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"fastrie 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -7,7 +7,7 @@ readme = "README.md"
keywords = ["html", "compress", "minifier", "minify", "minification"]
categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"]
repository = "https://github.com/wilsonzlin/hyperbuild.git"
version = "0.0.13"
version = "0.0.14"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/gen/*.json", "/src/**/*", "/build.rs", "/Cargo.toml", "/LICENSE", "/README.md"]

View File

@ -25,9 +25,9 @@ Speed and effectiveness of Node.js version compared to [html-minfier](https://gi
##### Get
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.13-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.13-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.13-linux-x86_64)
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.14-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.14-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.14-linux-x86_64)
##### Use
@ -44,7 +44,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html
```toml
[dependencies]
hyperbuild = "0.0.13"
hyperbuild = "0.0.14"
```
##### Use

View File

@ -1,7 +1,7 @@
[package]
name = "hyperbuild-nodejs"
publish = false
version = "0.0.13"
version = "0.0.14"
authors = ["Wilson Lin <code@wilsonl.in>"]
license = "MIT"
build = "build.rs"
@ -16,5 +16,5 @@ crate-type = ["cdylib"]
neon-build = "0.3.3"
[dependencies]
hyperbuild = "0.0.13"
hyperbuild = "0.0.14"
neon = "0.3.3"

View File

@ -1,6 +1,6 @@
{
"name": "hyperbuild",
"version": "0.0.13",
"version": "0.0.14",
"description": "One-pass in-place HTML minifier written in Rust with context-aware whitespace handling",
"main": "lib/index.js",
"repository": {