Skip to content

Commit 7d88913

Browse files
committedApr 19, 2016
v1.4.0.
1 parent ff6529a commit 7d88913

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed
 

‎.travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
sudo: false
2+
23
language: node_js
4+
35
node_js:
46
- "0.10"
57
- "0.12"
68
- "4"
79
- "5"
810
- "iojs"
9-
before_install:
10-
- if [ "$TRAVIS_NODE_VERSION" = "0.10" ]; then npm install -g npm@2; fi
11+
1112
matrix:
1213
fast_finish: true
14+
1315
cache:
1416
directories:
1517
- node_modules

‎CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v1.4.0:
2+
date: 2016-04-19
3+
changes:
4+
- Updated to `html-minifier` 2.0.0.
15
v1.3.0:
26
date: 2016-04-10
37
changes:

‎README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-htmlmin v1.3.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-htmlmin.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-htmlmin) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/sn73i2qggqeolnc2/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-htmlmin/branch/master)
1+
# grunt-contrib-htmlmin v1.4.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-htmlmin.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-htmlmin) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/sn73i2qggqeolnc2/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-htmlmin/branch/master)
22

33
> Minify HTML
44
@@ -60,6 +60,7 @@ grunt.registerTask('default', ['htmlmin']);
6060

6161
## Release History
6262

63+
* 2016-04-19   v1.4.0   Updated to `html-minifier` 2.0.0.
6364
* 2016-04-10   v1.3.0   Updated to `html-minifier` 1.5.0.
6465
* 2016-03-31   v1.2.0   Updated to `html-minifier` 1.4.0.
6566
* 2016-03-18   v1.1.0   Updated to `html-minifier` 1.3.0.
@@ -80,4 +81,4 @@ grunt.registerTask('default', ['htmlmin']);
8081

8182
Task submitted by [Sindre Sorhus](http://github.com/sindresorhus)
8283

83-
*This file was generated on Sun Apr 10 2016 14:29:25.*
84+
*This file was generated on Tue Apr 19 2016 09:50:18.*

‎appveyor.yml

-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# http://www.appveyor.com/docs/appveyor-yml
2-
31
clone_depth: 10
42

53
version: "{build}"
@@ -20,11 +18,6 @@ environment:
2018

2119
install:
2220
- ps: Install-Product node $env:nodejs_version $env:platform
23-
- ps: >-
24-
if ($env:nodejs_version -eq "0.10") {
25-
npm -g install npm@2
26-
$env:PATH="$env:APPDATA\npm;$env:PATH"
27-
}
2821
- npm install
2922

3023
test_script:

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-contrib-htmlmin",
33
"description": "Minify HTML",
4-
"version": "1.3.0",
4+
"version": "1.4.0",
55
"author": {
66
"name": "Grunt Team",
77
"url": "http://gruntjs.com/"

1 commit comments

Comments
 (1)

XhmikosR commented on Apr 19, 2016

@XhmikosR
MemberAuthor

@vladikoff: please npm publish this.

Please sign in to comment.