Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit 4b60d4d

Browse files
AndSheCodes2sfrisk
authored andcommitted
Build: Added grunt-html
Fixes gh-126 Closes gh-128
1 parent 72ad168 commit 4b60d4d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
"ejs-template": "0.1.0",
4444
"grunt": "0.4.5",
4545
"grunt-autoprefixer": "2.1.0",
46-
"grunt-contrib-cssmin": "0.14.0",
46+
"grunt-contrib-connect": "0.9.0",
4747
"grunt-contrib-csslint": "0.5.0",
48+
"grunt-contrib-cssmin": "0.14.0",
4849
"grunt-contrib-jshint": "0.11.3",
49-
"grunt-contrib-connect": "0.9.0",
5050
"grunt-contrib-watch": "0.6.1",
5151
"grunt-csscomb": "3.0.0",
5252
"grunt-git-authors": "2.0.0",
53-
"grunt-html": "1.6.0",
53+
"grunt-html": "^5.0.1",
5454
"grunt-jscs": "2.0.0",
5555
"grunt-sass": "1.0.0",
5656
"grunt-selenium-server": "0.1.2",

tasks/alias.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = function( grunt ) {
22
grunt.registerTask( "default", [ "test" ] );
3-
grunt.registerTask( "test", [ "build", "jshint", "jscs", "csslint" ] );
3+
grunt.registerTask( "test", [ "build", "jshint", "jscs", "csslint", "htmllint" ] );
44
grunt.registerTask( "build", [ "variables", "svg", "sass", "csscomb", "cssmin" ] );
55
grunt.registerTask( "perf", [
66
"start-selenium-server",

tasks/options/htmllint.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
all: [ "demos/*.html" ]
3+
};

0 commit comments

Comments
 (0)