Skip to content

Commit b8bd228

Browse files
committedOct 27, 2015
v0.10.0
1 parent e47d9e1 commit b8bd228

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed
 

‎CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.10.0:
2+
date: 2015-10-27
3+
changes:
4+
- bump to uglify ^2.5
15
v0.9.2:
26
date: 2015-08-24
37
changes:

‎README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-uglify v0.9.2 [![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 v0.10.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 files with UglifyJS
44
@@ -168,44 +168,44 @@ Turn on preservation of comments.
168168

169169
#### banner
170170
Type: `String`
171-
Default: empty string
171+
Default: `''`
172172

173173
This string will be prepended to the minified output. Template strings (e.g. `<%= config.value %>` will be expanded automatically.
174174

175175
#### footer
176176
Type: `String`
177-
Default: empty string
177+
Default: `''`
178178

179179
This string will be appended to the minified output. Template strings (e.g. `<%= config.value %>` will be expanded automatically.
180180

181181
#### screwIE8
182182
Type: `Boolean`
183-
Default: false
183+
Default: `false`
184184

185185
Pass this flag if you don't care about full compliance with Internet Explorer 6-8 quirks.
186186

187187
#### mangleProperties
188188
Type: `Boolean`
189-
Default: false
189+
Default: `false`
190190

191191
Use this flag to turn on object property name mangling.
192192

193193
#### reserveDOMProperties
194194
Type: `Boolean`
195-
Default: false
195+
Default: `false`
196196

197197
Use this flag in conjunction with `mangleProperties` to prevent built-in browser object properties from being mangled.
198198

199199
#### exceptionsFiles
200200
Type: `Array`
201-
Default: []
201+
Default: `[]`
202202

203203
Use this with `mangleProperties` to pass one or more JSON files containing a list of variables and object properties
204204
that should not be mangled. See the [UglifyJS docs](https://www.npmjs.com/package/uglify-js) for more info on the file syntax.
205205

206206
#### nameCache
207207
Type: `String`
208-
Default: empty string
208+
Default: `''`
209209

210210
A string that is a path to a JSON cache file that uglify will create and use to coordinate symbol mangling between
211211
multiple runs of uglify. Note: this generated file uses the same JSON format as the `exceptionsFiles` files.
@@ -511,6 +511,7 @@ grunt.initConfig({
511511

512512
## Release History
513513

514+
* 2015-10-27   v0.10.0   bump to uglify ^2.5
514515
* 2015-08-24   v0.9.2   bump to uglify ^2.4.24
515516
* 2015-04-07   v0.9.1   more fixes for mangle options
516517
* 2015-04-07   v0.9.0   added hook into uglify's mangling functionality
@@ -542,4 +543,4 @@ grunt.initConfig({
542543

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

545-
*This file was generated on Sat Sep 19 2015 08:57:31.*
546+
*This file was generated on Tue Oct 27 2015 10:41:14.*

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-contrib-uglify",
33
"description": "Minify files with UglifyJS",
4-
"version": "0.9.2",
4+
"version": "0.10.0",
55
"author": {
66
"name": "Grunt Team",
77
"url": "http://gruntjs.com/"

0 commit comments

Comments
 (0)
Please sign in to comment.