Update description

This commit is contained in:
Wilson Lin 2020-07-10 20:51:59 +10:00
parent f646c95f9e
commit 86f961e600
5 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "hyperbuild" name = "hyperbuild"
description = "Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling" description = "Fast allocation-less HTML minifier with smart whitespace handling"
license = "MIT" license = "MIT"
homepage = "https://github.com/wilsonzlin/hyperbuild" homepage = "https://github.com/wilsonzlin/hyperbuild"
readme = "README.md" readme = "README.md"

View File

@ -9,7 +9,7 @@
<version>0.1.12</version> <version>0.1.12</version>
<name>hyperbuild</name> <name>hyperbuild</name>
<description>Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling</description> <description>Fast allocation-less HTML minifier with smart whitespace handling</description>
<url>https://github.com/wilsonzlin/hyperbuild</url> <url>https://github.com/wilsonzlin/hyperbuild</url>
<developers> <developers>
<developer> <developer>

View File

@ -1,7 +1,7 @@
{ {
"name": "hyperbuild", "name": "hyperbuild",
"version": "0.1.12", "version": "0.1.12",
"description": "Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling", "description": "Fast allocation-less HTML minifier with smart whitespace handling",
"main": "dist/index.js", "main": "dist/index.js",
"files": [ "files": [
"dist/**" "dist/**"

View File

@ -8,7 +8,7 @@ setuptools.setup(
version="0.1.12", version="0.1.12",
author="Wilson Lin", author="Wilson Lin",
author_email="code@wilsonl.in", author_email="code@wilsonl.in",
description="Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling", description="Fast allocation-less HTML minifier with smart whitespace handling",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/wilsonzlin/hyperbuild", url="https://github.com/wilsonzlin/hyperbuild",

View File

@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.email = ["code@wilsonl.in"] spec.email = ["code@wilsonl.in"]
spec.license = "MIT" spec.license = "MIT"
spec.files = FileList["lib/*", "README.md"].to_a spec.files = FileList["lib/*", "README.md"].to_a
spec.summary = "Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling" spec.summary = "Fast allocation-less HTML minifier with smart whitespace handling"
spec.homepage = "https://github.com/wilsonzlin/hyperbuild" spec.homepage = "https://github.com/wilsonzlin/hyperbuild"
spec.require_paths = ["lib"] spec.require_paths = ["lib"]