Skip to content

Commit

Permalink
v4.0.0. (#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored and vladikoff committed Sep 4, 2018
1 parent 7b4ecb5 commit 5cdebda
Show file tree
Hide file tree
Showing 11 changed files with 2,566 additions and 1,181 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -3,8 +3,6 @@ sudo: false
language: node_js

node_js:
- "0.10"
- "4"
- "6"
- "8"
- "10"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG
@@ -1,3 +1,8 @@
v4.0.0:
date: 2018-08-26
changes:
- Update dependencies.
- Requires Node.js >= 6.
v3.4.0:
date: 2018-07-29
changes:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
@@ -1 +1 @@
Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project.
Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project.
6 changes: 3 additions & 3 deletions Gruntfile.js
@@ -1,6 +1,6 @@
/*
* grunt-contrib-uglify
* http://gruntjs.com/
* https://gruntjs.com/
*
* Copyright (c) 2016 "Cowboy" Ben Alman, contributors
* Licensed under the MIT license.
Expand Down Expand Up @@ -183,7 +183,7 @@ module.exports = function(grunt) {
dest: 'tmp/sourcemap_customUrl.js',
options: {
sourceMap: {
url: 'http://www.test.com/test/sourcemap_customUrl.js.map'
url: 'https://www.test.com/test/sourcemap_customUrl.js.map'
}
}
},
Expand Down Expand Up @@ -458,6 +458,6 @@ module.exports = function(grunt) {
]);

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

};
9 changes: 5 additions & 4 deletions README.md
@@ -1,12 +1,12 @@
# 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)
# 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)

> Minify JavaScript files with UglifyJS


## Getting Started

If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
If you haven't used [Grunt](https://gruntjs.com/) before, be sure to check out the [Getting Started](https://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](https://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

```shell
npm install grunt-contrib-uglify --save-dev
Expand All @@ -24,7 +24,7 @@ grunt.loadNpmTasks('grunt-contrib-uglify');
## Uglify task
_Run this task with the `grunt uglify` command._

Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
Task targets, files and options may be specified according to the grunt [Configuring tasks](https://gruntjs.com/configuring-tasks) guide.

### Options

Expand Down Expand Up @@ -525,6 +525,7 @@ grunt.initConfig({

## Release History

* 2018-08-26   v4.0.0   Update dependencies. Requires Node.js >= 6.
* 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.
Expand Down Expand Up @@ -574,4 +575,4 @@ grunt.initConfig({

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

*This file was generated on Sun Jul 29 2018 01:52:18.*
*This file was generated on Sun Aug 26 2018 09:22:15.*
6 changes: 0 additions & 6 deletions appveyor.yml
Expand Up @@ -5,12 +5,6 @@ version: "{build}"
# What combinations to test
environment:
matrix:
- nodejs_version: "0.10"
platform: x86
- nodejs_version: "4"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "6"
platform: x86
- nodejs_version: "8"
Expand Down
2 changes: 1 addition & 1 deletion docs/uglify-overview.md
@@ -1 +1 @@
Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
Task targets, files and options may be specified according to the grunt [Configuring tasks](https://gruntjs.com/configuring-tasks) guide.

0 comments on commit 5cdebda

Please sign in to comment.