|
1 |
| -# grunt-contrib-uglify v0.9.2 [](https://travis-ci.org/gruntjs/grunt-contrib-uglify) [](https://ci.appveyor.com/project/gruntjs/grunt-contrib-uglify/branch/master) |
| 1 | +# grunt-contrib-uglify v0.10.0 [](https://travis-ci.org/gruntjs/grunt-contrib-uglify) [](https://ci.appveyor.com/project/gruntjs/grunt-contrib-uglify/branch/master) |
2 | 2 |
|
3 | 3 | > Minify files with UglifyJS
|
4 | 4 |
|
@@ -168,44 +168,44 @@ Turn on preservation of comments.
|
168 | 168 |
|
169 | 169 | #### banner
|
170 | 170 | Type: `String`
|
171 |
| -Default: empty string |
| 171 | +Default: `''` |
172 | 172 |
|
173 | 173 | This string will be prepended to the minified output. Template strings (e.g. `<%= config.value %>` will be expanded automatically.
|
174 | 174 |
|
175 | 175 | #### footer
|
176 | 176 | Type: `String`
|
177 |
| -Default: empty string |
| 177 | +Default: `''` |
178 | 178 |
|
179 | 179 | This string will be appended to the minified output. Template strings (e.g. `<%= config.value %>` will be expanded automatically.
|
180 | 180 |
|
181 | 181 | #### screwIE8
|
182 | 182 | Type: `Boolean`
|
183 |
| -Default: false |
| 183 | +Default: `false` |
184 | 184 |
|
185 | 185 | Pass this flag if you don't care about full compliance with Internet Explorer 6-8 quirks.
|
186 | 186 |
|
187 | 187 | #### mangleProperties
|
188 | 188 | Type: `Boolean`
|
189 |
| -Default: false |
| 189 | +Default: `false` |
190 | 190 |
|
191 | 191 | Use this flag to turn on object property name mangling.
|
192 | 192 |
|
193 | 193 | #### reserveDOMProperties
|
194 | 194 | Type: `Boolean`
|
195 |
| -Default: false |
| 195 | +Default: `false` |
196 | 196 |
|
197 | 197 | Use this flag in conjunction with `mangleProperties` to prevent built-in browser object properties from being mangled.
|
198 | 198 |
|
199 | 199 | #### exceptionsFiles
|
200 | 200 | Type: `Array`
|
201 |
| -Default: [] |
| 201 | +Default: `[]` |
202 | 202 |
|
203 | 203 | Use this with `mangleProperties` to pass one or more JSON files containing a list of variables and object properties
|
204 | 204 | that should not be mangled. See the [UglifyJS docs](https://www.npmjs.com/package/uglify-js) for more info on the file syntax.
|
205 | 205 |
|
206 | 206 | #### nameCache
|
207 | 207 | Type: `String`
|
208 |
| -Default: empty string |
| 208 | +Default: `''` |
209 | 209 |
|
210 | 210 | A string that is a path to a JSON cache file that uglify will create and use to coordinate symbol mangling between
|
211 | 211 | multiple runs of uglify. Note: this generated file uses the same JSON format as the `exceptionsFiles` files.
|
@@ -511,6 +511,7 @@ grunt.initConfig({
|
511 | 511 |
|
512 | 512 | ## Release History
|
513 | 513 |
|
| 514 | + * 2015-10-27 v0.10.0 bump to uglify ^2.5 |
514 | 515 | * 2015-08-24 v0.9.2 bump to uglify ^2.4.24
|
515 | 516 | * 2015-04-07 v0.9.1 more fixes for mangle options
|
516 | 517 | * 2015-04-07 v0.9.0 added hook into uglify's mangling functionality
|
@@ -542,4 +543,4 @@ grunt.initConfig({
|
542 | 543 |
|
543 | 544 | Task submitted by ["Cowboy" Ben Alman](http://benalman.com)
|
544 | 545 |
|
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.* |
0 commit comments