From f65dbb96ec0e080ae5892d5144b0048379d1fec0 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Fri, 22 Mar 2019 02:45:51 +0800 Subject: [PATCH] v4.0.1. (#535) --- CHANGELOG | 5 +++++ README.md | 14 +++++++------- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b8413d34..3eb1ebc3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +v4.0.1: + date: 2019-03-21 + changes: + - Update uglify-js to v3.5.0. + - Update dependencies. v4.0.0: date: 2018-08-26 changes: diff --git a/README.md b/README.md index 086371bb..df9c7f5b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 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) +# 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) > Minify JavaScript files with UglifyJS @@ -54,19 +54,19 @@ sourceMapUrl | sourceMap.url Type: `Boolean` `Object` Default: `{}` -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). +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). #### compress Type: `Boolean` `Object` Default: `{}` -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). +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). #### beautify Type: `Boolean` `Object` Default: `false` -Turns on beautification of the generated source code. [View all options here](https://github.com/mishoo/UglifyJS2#beautifier-options) +Turns on beautification of the generated source code. [View all options here](https://github.com/mishoo/UglifyJS2#output-options) ###### parse.expression Type: `Boolean` @@ -171,7 +171,7 @@ Set this to `true` if you still care about full compliance with Internet Explore Type: `Boolean` `Object` Default: `false` -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). +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). #### reserveDOMProperties Type: `Boolean` @@ -343,7 +343,7 @@ grunt.initConfig({ Specify `beautify: true` to beautify your code for debugging/troubleshooting purposes. Pass an object to manually configure any other output options. -See [UglifyJS documentation](https://github.com/mishoo/UglifyJS2#beautifier-options) for more information. +See [UglifyJS documentation](https://github.com/mishoo/UglifyJS2#output-options) for more information. ```js // Project configuration. @@ -575,4 +575,4 @@ grunt.initConfig({ Task submitted by ["Cowboy" Ben Alman](http://benalman.com) -*This file was generated on Sun Aug 26 2018 09:22:15.* +*This file was generated on Thu Mar 21 2019 14:11:06.* diff --git a/package-lock.json b/package-lock.json index 747b2cce..82d7f0cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "grunt-contrib-uglify", - "version": "4.0.0", + "version": "4.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d7f28e76..78b84281 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "grunt-contrib-uglify", "description": "Minify JavaScript files with UglifyJS", - "version": "4.0.0", + "version": "4.0.1", "author": { "name": "Grunt Team", "url": "https://gruntjs.com/"