aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/tdewolff/minify/cmd/minify/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/tdewolff/minify/cmd/minify/README.md')
-rw-r--r--vendor/github.com/tdewolff/minify/cmd/minify/README.md76
1 files changed, 30 insertions, 46 deletions
diff --git a/vendor/github.com/tdewolff/minify/cmd/minify/README.md b/vendor/github.com/tdewolff/minify/cmd/minify/README.md
index 662ca2d..f042fe3 100644
--- a/vendor/github.com/tdewolff/minify/cmd/minify/README.md
+++ b/vendor/github.com/tdewolff/minify/cmd/minify/README.md
@@ -13,53 +13,37 @@ Run the following command
and the `minify` command will be in your `$GOPATH/bin`.
-## Usage
+You can enable bash tab completion by using
+
+ source minify_bash_tab_completion
- Usage: minify [options] [input]
-
- Options:
- -a, --all
- Minify all files, including hidden files and files in hidden directories
- -l, --list
- List all accepted filetypes
- --match string
- Filename pattern matching using regular expressions, see https://github.com/google/re2/wiki/Syntax
- --mime string
- Mimetype (text/css, application/javascript, ...), optional for input filenames, has precedence over -type
- -o, --output string
- Output file or directory (must have trailing slash), leave blank to use stdout
- -r, --recursive
- Recursively minify directories
- --type string
- Filetype (css, html, js, ...), optional for input filenames
- -u, --update
- Update binary
- --url string
- URL of file to enable URL minification
- -v, --verbose
- Verbose
- -w, --watch
- Watch files and minify upon changes
-
- --css-decimals
- Number of decimals to preserve in numbers, -1 is all
- --html-keep-conditional-comments
- Preserve all IE conditional comments
- --html-keep-default-attrvals
- Preserve default attribute values
- --html-keep-document-tags
- Preserve html, head and body tags
- --html-keep-end-tags
- Preserve all end tags
- --html-keep-whitespace
- Preserve whitespace characters but still collapse multiple into one
- --svg-decimals
- Number of decimals to preserve in numbers, -1 is all
- --xml-keep-whitespace
- Preserve whitespace characters but still collapse multiple into one
-
- Input:
- Files or directories, leave blank to use stdin
+## Usage
+ Usage: minify [options] [input]
+
+ Options:
+ -a, --all Minify all files, including hidden files and files in hidden directories
+ --css-decimals int Number of decimals to preserve in numbers, -1 is all (default -1)
+ -h, --help Show usage
+ --html-keep-conditional-comments Preserve all IE conditional comments
+ --html-keep-default-attrvals Preserve default attribute values
+ --html-keep-document-tags Preserve html, head and body tags
+ --html-keep-end-tags Preserve all end tags
+ --html-keep-whitespace Preserve whitespace characters but still collapse multiple into one
+ -l, --list List all accepted filetypes
+ --match string Filename pattern matching using regular expressions
+ --mime string Mimetype (eg. text/css), optional for input filenames, has precedence over -type
+ -o, --output string Output file or directory (must have trailing slash), leave blank to use stdout
+ -r, --recursive Recursively minify directories
+ --svg-decimals int Number of decimals to preserve in numbers, -1 is all (default -1)
+ --type string Filetype (eg. css), optional for input filenames
+ --url string URL of file to enable URL minification
+ -v, --verbose Verbose
+ --version Version
+ -w, --watch Watch files and minify upon changes
+ --xml-keep-whitespace Preserve whitespace characters but still collapse multiple into one
+
+ Input:
+ Files or directories, leave blank to use stdin
### Types