Shorten description
This commit is contained in:
parent
71ad320942
commit
bc25b389de
6 changed files with 7 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "minify-html"
|
||||
description = "Uncompromisingly fast and smart HTML + JS minifier"
|
||||
description = "Fast and smart HTML + JS minifier"
|
||||
license = "MIT"
|
||||
homepage = "https://github.com/wilsonzlin/minify-html"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# minify-html
|
||||
|
||||
Uncompromisingly fast and smart HTML + JS minifier, available for Rust, Node.js, Python, Java, and Ruby.
|
||||
An HTML minifier meticulously optimised for both speed and effectiveness, available for Rust, Node.js, Python, Java, and Ruby.
|
||||
|
||||
**Smart**
|
||||
|
||||
|
|
@ -16,7 +16,7 @@ Uncompromisingly fast and smart HTML + JS minifier, available for Rust, Node.js,
|
|||
- Written fully in Rust, and natively binds to [esbuild](https://github.com/evanw/esbuild) for super fast JS minification.
|
||||
- Natively binds to Node.js, Python, Java, and Ruby, for speed from the comfort of your favourite language.
|
||||
|
||||
**Soundness**
|
||||
**Sound**
|
||||
- Well tested with a large test suite and extensive [fuzzing](./fuzz).
|
||||
- Guaranteed to return an equal or shorter amount of bytes.
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<version>0.2.6</version>
|
||||
|
||||
<name>minify-html</name>
|
||||
<description>Uncompromisingly fast and smart HTML + JS minifier</description>
|
||||
<description>Fast and smart HTML + JS minifier</description>
|
||||
<url>https://github.com/wilsonzlin/minify-html</url>
|
||||
<developers>
|
||||
<developer>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@minify-html/js-esbuild",
|
||||
"version": "0.2.6",
|
||||
"description": "Uncompromisingly fast and smart HTML + JS minifier",
|
||||
"description": "Fast and smart HTML + JS minifier",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist/**",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
publish = false
|
||||
name = "minify_html"
|
||||
description = "Uncompromisingly fast and smart HTML + JS minifier"
|
||||
description = "Fast and smart HTML + JS minifier"
|
||||
license = "MIT"
|
||||
homepage = "https://github.com/wilsonzlin/minify-html"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|||
spec.email = ["code@wilsonl.in"]
|
||||
spec.license = "MIT"
|
||||
spec.files = FileList["lib/*", "README.md"].to_a
|
||||
spec.summary = "Uncompromisingly fast and smart HTML + JS minifier"
|
||||
spec.summary = "Fast and smart HTML + JS minifier"
|
||||
spec.homepage = "https://github.com/wilsonzlin/minify_html"
|
||||
|
||||
spec.require_paths = ["lib"]
|
||||
|
|
|
|||
Reference in a new issue