Skip to content

Commit

Permalink
v3.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl authored and XhmikosR committed Jul 28, 2018
1 parent f6f834b commit 7b4ecb5
Show file tree
Hide file tree
Showing 6 changed files with 433 additions and 192 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
v3.4.0:
date: 2018-07-29
changes:
- Update uglify-js to v3.4.0.
v3.3.0:
date: 2017-12-24
changes:
Expand Down
3 changes: 2 additions & 1 deletion Gruntfile.js
Expand Up @@ -446,6 +446,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-internal');

// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
Expand All @@ -457,6 +458,6 @@ module.exports = function(grunt) {
]);

// By default, lint and run all tests.
grunt.registerTask('default', ['test', 'build-contrib']);
grunt.registerTask('default', ['test', 'contrib-ci:skipIfExists', 'contrib-core']);

};
5 changes: 3 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
# grunt-contrib-uglify v3.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)
# grunt-contrib-uglify v3.4.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)

> Minify JavaScript files with UglifyJS
Expand Down Expand Up @@ -525,6 +525,7 @@ grunt.initConfig({

## Release History

* 2018-07-29   v3.4.0   Update uglify-js to v3.4.0.
* 2017-12-24   v3.3.0   Update uglify-js to v3.3.0.
* 2017-11-26   v3.2.1   Update uglify-js to v3.2.0.
* 2017-09-11   v3.1.0   Update uglify-js to v3.1.0.
Expand Down Expand Up @@ -573,4 +574,4 @@ grunt.initConfig({

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

*This file was generated on Sun Dec 24 2017 14:47:07.*
*This file was generated on Sun Jul 29 2018 01:52:18.*
10 changes: 5 additions & 5 deletions appveyor.yml
Expand Up @@ -7,16 +7,16 @@ environment:
matrix:
- nodejs_version: "0.10"
platform: x86
- nodejs_version: "4"
platform: x86
- nodejs_version: "4"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "6"
platform: x64
platform: x86
- nodejs_version: "8"
platform: x64
platform: x86
- nodejs_version: "10"
platform: x64
platform: x86

install:
- ps: Install-Product node $env:nodejs_version $env:platform
Expand Down

0 comments on commit 7b4ecb5

Please sign in to comment.