Skip to content

Commit

Permalink
v2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Jul 19, 2016
1 parent f772246 commit 64482bf
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
sudo: false

language: node_js

node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "iojs"
before_install:
- if [ "$TRAVIS_NODE_VERSION" = "0.10" ]; then npm install -g npm@2; fi

matrix:
fast_finish: true

cache:
directories:
- node_modules
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v2.0.0:
date: 2016-07-19
changes:
- Update uglify-js to v2.7.0. `screwIE8` is enabled by default.
v1.0.1:
date: 2016-03-16
changes:
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# grunt-contrib-uglify v1.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)
# grunt-contrib-uglify v2.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
> Minify JavaScript files with UglifyJS


Expand Down Expand Up @@ -186,9 +186,9 @@ This string will be appended to the minified output. Template strings (e.g. `<%=

#### screwIE8
Type: `Boolean`
Default: `false`
Default: `true`

Pass this flag if you don't care about full compliance with Internet Explorer 6-8 quirks.
Set this to `false` if you still care about full compliance with Internet Explorer 6-8 quirks.

#### mangleProperties
Type: `Boolean` `Object`
Expand Down Expand Up @@ -517,6 +517,7 @@ grunt.initConfig({

## Release History

* 2016-07-19   v2.0.0   Update uglify-js to v2.7.0. `screwIE8` is enabled by default.
* 2016-03-16   v1.0.1   Downgrade maxmin for Node.js 0.10.
* 2016-03-04   v1.0.0   Use uglify-js ~2.6.2 to fix sourcemap issue. Improving docs for `global-defs` and `--define` options. Add `sourceMapUrl` option. add `bare_returns` option. Optionally set report verbosity level using report option.
* 2016-01-29   v0.11.1   Update to lodash ^4.0.1. Update to grunt-contrib-clean ^0.7.0. Update to grunt-contrib-jshint ^0.12.0.
Expand Down Expand Up @@ -554,4 +555,4 @@ grunt.initConfig({

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

*This file was generated on Tue Jul 19 2016 10:15:13.*
*This file was generated on Tue Jul 19 2016 10:19:37.*
7 changes: 0 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# http://www.appveyor.com/docs/appveyor-yml

clone_depth: 10

version: "{build}"
Expand All @@ -20,11 +18,6 @@ environment:

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: >-
if ($env:nodejs_version -eq "0.10") {
npm -g install npm@2
$env:PATH="$env:APPDATA\npm;$env:PATH"
}
- npm install

test_script:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-uglify",
"description": "Minify javascript files with UglifyJS",
"version": "1.0.1",
"description": "Minify JavaScript files with UglifyJS",
"version": "2.0.0",
"author": {
"name": "Grunt Team",
"url": "http://gruntjs.com/"
Expand Down

0 comments on commit 64482bf

Please sign in to comment.