Skip to content

Commit f65dbb9

Browse files
authored
v4.0.1. (#535)
1 parent b33a071 commit f65dbb9

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v4.0.1:
2+
date: 2019-03-21
3+
changes:
4+
- Update uglify-js to v3.5.0.
5+
- Update dependencies.
16
v4.0.0:
27
date: 2018-08-26
38
changes:

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-uglify v4.0.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)
1+
# grunt-contrib-uglify v4.0.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)
22

33
> Minify JavaScript files with UglifyJS
44
@@ -54,19 +54,19 @@ sourceMapUrl | sourceMap.url
5454
Type: `Boolean` `Object`
5555
Default: `{}`
5656

57-
Turn on or off mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_names()` *and* `ast.compute_char_frequency()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangler-options).
57+
Turn on or off mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_names()` *and* `ast.compute_char_frequency()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangle-options).
5858

5959
#### compress
6060
Type: `Boolean` `Object`
6161
Default: `{}`
6262

63-
Turn on or off source compression with default options. If an `Object` is specified, it is passed as options to `UglifyJS.Compressor()`. [View all options here](https://github.com/mishoo/UglifyJS2#compressor-options).
63+
Turn on or off source compression with default options. If an `Object` is specified, it is passed as options to `UglifyJS.Compressor()`. [View all options here](https://github.com/mishoo/UglifyJS2#compress-options).
6464

6565
#### beautify
6666
Type: `Boolean` `Object`
6767
Default: `false`
6868

69-
Turns on beautification of the generated source code. [View all options here](https://github.com/mishoo/UglifyJS2#beautifier-options)
69+
Turns on beautification of the generated source code. [View all options here](https://github.com/mishoo/UglifyJS2#output-options)
7070

7171
###### parse.expression
7272
Type: `Boolean`
@@ -171,7 +171,7 @@ Set this to `true` if you still care about full compliance with Internet Explore
171171
Type: `Boolean` `Object`
172172
Default: `false`
173173

174-
Turn on or off property mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_properties()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangler-options).
174+
Turn on or off property mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_properties()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangle-options).
175175

176176
#### reserveDOMProperties
177177
Type: `Boolean`
@@ -343,7 +343,7 @@ grunt.initConfig({
343343
Specify `beautify: true` to beautify your code for debugging/troubleshooting purposes.
344344
Pass an object to manually configure any other output options.
345345

346-
See [UglifyJS documentation](https://github.com/mishoo/UglifyJS2#beautifier-options) for more information.
346+
See [UglifyJS documentation](https://github.com/mishoo/UglifyJS2#output-options) for more information.
347347

348348
```js
349349
// Project configuration.
@@ -575,4 +575,4 @@ grunt.initConfig({
575575

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

578-
*This file was generated on Sun Aug 26 2018 09:22:15.*
578+
*This file was generated on Thu Mar 21 2019 14:11:06.*

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 JavaScript files with UglifyJS",
4-
"version": "4.0.0",
4+
"version": "4.0.1",
55
"author": {
66
"name": "Grunt Team",
77
"url": "https://gruntjs.com/"

0 commit comments

Comments
 (0)