Uglify JS files with glob pattern.
$ npm install glob-uglifyjs
- Uglify
js
files with node-glob pattern. - Remove source files after uglify.
$ glob-uglifyjs -h
Argument | Type | Default | Description |
---|---|---|---|
-h, --help | boolean | false |
Show help. |
-p, --pattern [1] | string | Files glob pattern. | |
-v, --version | boolean | false |
Show version number. |
-c, --config | string | glob-uglifyjs.config.json |
Path to JSON config file. |
[1] - argument required.
{
"pattern": "/**/*",
"options": {
"UseMinExt": false,
"MinifyOptions": {},
"OutDir": "dist-min",
"RootDir": "dist",
"RemoveSource": false,
"Debug": false
}
}
Property | Type | Description |
---|---|---|
pattern[1] | string | Files glob pattern. |
options | Options | glob-uglifyjs options. |
[1] - property required.
Option | Type | Default | Description |
---|---|---|---|
UseMinExt | boolean | true |
Use min extensions in output files. |
MinifyOptions | object | {} |
UglifyJS minify options. Read more. |
OutDir | string | |
Redirect output structure to the directory. |
RootDir | string | |
Specifies the root directory of input files. |
RemoveSource | boolean | false |
Remove all source files specified by glob pattern. |
Debug | boolean | false |
Show errors details information. |
exclude | string | string[] | undefined |
Add a pattern or an array of glob patterns to exclude matches. Read more in node-glob options ignore . |
Cwd | string | process.cwd() |
Current working directory. |
Released under the PGL-3.0 license.