Skip to content

Commit f3086c1

Browse files
committed
v2.3.0.
1 parent 7dc5e1d commit f3086c1

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v2.3.0:
2+
date: 2017-04-05
3+
changes:
4+
- Make CLI output less verbose.
15
v2.2.1:
26
date: 2017-03-31
37
changes:

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 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)
1+
# 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)
22

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

6161
#### report
62-
Choices: `'none'`, `'min'`, `'gzip'`
62+
Type: `string`
63+
Choices: `'min'`, `'gzip'`
6364
Default: `'min'`
6465

65-
Either report only minification result or report minification and gzip results.
66-
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).
67-
If `'none'` is used the report will be generated on the verbose output.
66+
Report minification result or both minification and gzip results.
67+
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).
6868

6969
#### sourceMap
7070
Type: `Boolean`
@@ -528,6 +528,7 @@ grunt.initConfig({
528528

529529
## Release History
530530

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

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

573-
*This file was generated on Fri Mar 31 2017 12:54:16.*
574+
*This file was generated on Wed Apr 05 2017 00:24:18.*

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-contrib-uglify",
33
"description": "Minify JavaScript files with UglifyJS",
4-
"version": "2.2.1",
4+
"version": "2.3.0",
55
"author": {
66
"name": "Grunt Team",
77
"url": "http://gruntjs.com/"
@@ -19,7 +19,7 @@
1919
"chalk": "^1.0.0",
2020
"maxmin": "^1.1.0",
2121
"object.assign": "^4.0.4",
22-
"uglify-js": "~2.8.20",
22+
"uglify-js": "~2.8.21",
2323
"uri-path": "^1.0.0"
2424
},
2525
"devDependencies": {

0 commit comments

Comments
 (0)