Skip to content

Commit b8db17a

Browse files
authoredJul 18, 2016
Merge pull request #131 from gruntjs/deps
Update html-minifier to v3.0.0.
2 parents 43c64f9 + 69f06f4 commit b8db17a

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed
 

‎.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ sudo: false
33
language: node_js
44

55
node_js:
6-
- "0.10"
7-
- "0.12"
86
- "4"
97
- "5"
8+
- "6"
109
- "iojs"
1110

1211
matrix:

‎Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ module.exports = function (grunt) {
4242
grunt.loadNpmTasks('grunt-contrib-internal');
4343

4444
grunt.registerTask('test', ['jshint', 'clean', 'htmlmin', 'nodeunit']);
45-
grunt.registerTask('default', ['test', 'build-contrib']);
45+
grunt.registerTask('default', ['test', 'contrib-core', 'contrib-ci:skipIfExists']);
4646
};

‎appveyor.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,14 @@ version: "{build}"
55
# What combinations to test
66
environment:
77
matrix:
8-
- nodejs_version: "0.10"
9-
platform: x86
10-
- nodejs_version: "0.12"
11-
platform: x86
128
- nodejs_version: "4"
139
platform: x64
1410
- nodejs_version: "4"
1511
platform: x86
1612
- nodejs_version: "5"
1713
platform: x86
14+
- nodejs_version: "6"
15+
platform: x86
1816

1917
install:
2018
- ps: Install-Product node $env:nodejs_version $env:platform

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
"repository": "gruntjs/grunt-contrib-htmlmin",
1010
"license": "MIT",
1111
"engines": {
12-
"node": ">=0.10.0"
12+
"node": ">=4.0"
1313
},
1414
"main": "tasks/htmlmin.js",
1515
"scripts": {
1616
"test": "grunt test"
1717
},
1818
"dependencies": {
1919
"chalk": "^1.0.0",
20-
"html-minifier": "~2.1.7",
20+
"html-minifier": "~3.0.1",
2121
"pretty-bytes": "^3.0.1"
2222
},
2323
"devDependencies": {

0 commit comments

Comments
 (0)
Please sign in to comment.