Skip to content

Commit

Permalink
v2.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Apr 4, 2017
1 parent 7dc5e1d commit f3086c1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
v2.3.0:
date: 2017-04-05
changes:
- Make CLI output less verbose.
v2.2.1:
date: 2017-03-31
changes:
Expand Down
13 changes: 7 additions & 6 deletions README.md
@@ -1,4 +1,4 @@
# grunt-contrib-uglify v2.2.1 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-uglify.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-uglify) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/ybtf5vbvtenii561/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-uglify/branch/master)
# grunt-contrib-uglify v2.3.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-uglify.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-uglify) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/ybtf5vbvtenii561/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-uglify/branch/master)

> Minify JavaScript files with UglifyJS
Expand Down Expand Up @@ -59,12 +59,12 @@ Default: `false`
Parse a single expression, rather than a program (for parsing JSON)

#### report
Choices: `'none'`, `'min'`, `'gzip'`
Type: `string`
Choices: `'min'`, `'gzip'`
Default: `'min'`

Either report only minification result or report minification and gzip results.
This is useful to see exactly how well UglifyJS is performing but using `'gzip'` will make the task take 5-10x longer to complete. [Example output](https://github.com/sindresorhus/maxmin#readme).
If `'none'` is used the report will be generated on the verbose output.
Report minification result or both minification and gzip results.
This is useful to see exactly how well uglify-js is performing but using `'gzip'` will make the task take 5-10x longer to complete. [Example output](https://github.com/sindresorhus/maxmin#readme).

#### sourceMap
Type: `Boolean`
Expand Down Expand Up @@ -528,6 +528,7 @@ grunt.initConfig({

## Release History

* 2017-04-05   v2.3.0   Make CLI output less verbose.
* 2017-03-31   v2.2.1   Fix banner option.
* 2017-03-01   v2.2.0   Update uglify-js to v2.8.3.
* 2017-02-08   v2.1.0   Show size changes in output. Switch to `object.assign`.
Expand Down Expand Up @@ -570,4 +571,4 @@ grunt.initConfig({

Task submitted by ["Cowboy" Ben Alman](http://benalman.com)

*This file was generated on Fri Mar 31 2017 12:54:16.*
*This file was generated on Wed Apr 05 2017 00:24:18.*
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-uglify",
"description": "Minify JavaScript files with UglifyJS",
"version": "2.2.1",
"version": "2.3.0",
"author": {
"name": "Grunt Team",
"url": "http://gruntjs.com/"
Expand All @@ -19,7 +19,7 @@
"chalk": "^1.0.0",
"maxmin": "^1.1.0",
"object.assign": "^4.0.4",
"uglify-js": "~2.8.20",
"uglify-js": "~2.8.21",
"uri-path": "^1.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit f3086c1

Please sign in to comment.