Skip to content

Commit 7b4ecb5

Browse files
alexlamslXhmikosR
authored andcommitted
v3.4.0.
1 parent f6f834b commit 7b4ecb5

File tree

6 files changed

+433
-192
lines changed

6 files changed

+433
-192
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v3.4.0:
2+
date: 2018-07-29
3+
changes:
4+
- Update uglify-js to v3.4.0.
15
v3.3.0:
26
date: 2017-12-24
37
changes:

Gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ module.exports = function(grunt) {
446446
grunt.loadNpmTasks('grunt-contrib-jshint');
447447
grunt.loadNpmTasks('grunt-contrib-clean');
448448
grunt.loadNpmTasks('grunt-contrib-nodeunit');
449+
grunt.loadNpmTasks('grunt-contrib-internal');
449450

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

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

462463
};

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 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)
1+
# 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)
22

33
> Minify JavaScript files with UglifyJS
44
@@ -525,6 +525,7 @@ grunt.initConfig({
525525

526526
## Release History
527527

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

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

576-
*This file was generated on Sun Dec 24 2017 14:47:07.*
577+
*This file was generated on Sun Jul 29 2018 01:52:18.*

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ environment:
77
matrix:
88
- nodejs_version: "0.10"
99
platform: x86
10-
- nodejs_version: "4"
11-
platform: x86
1210
- nodejs_version: "4"
1311
platform: x64
12+
- nodejs_version: "4"
13+
platform: x86
1414
- nodejs_version: "6"
15-
platform: x64
15+
platform: x86
1616
- nodejs_version: "8"
17-
platform: x64
17+
platform: x86
1818
- nodejs_version: "10"
19-
platform: x64
19+
platform: x86
2020

2121
install:
2222
- ps: Install-Product node $env:nodejs_version $env:platform

0 commit comments

Comments
 (0)