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

Build: Added grunt-html #128

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Build: Added grunt-html
Fixes gh-126
  • Loading branch information
AndSheCodes2 committed Oct 17, 2015
commit e50b0ecfda3e38ee305a2592c0f697f4e6ee36fc
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@
"ejs-template": "0.1.0",
"grunt": "0.4.5",
"grunt-autoprefixer": "2.1.0",
"grunt-contrib-cssmin": "0.14.0",
"grunt-contrib-connect": "0.9.0",
"grunt-contrib-csslint": "0.5.0",
"grunt-contrib-cssmin": "0.14.0",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-connect": "0.9.0",
"grunt-contrib-watch": "0.6.1",
"grunt-csscomb": "3.0.0",
"grunt-git-authors": "2.0.0",
"grunt-html": "1.6.0",
"grunt-html": "^5.0.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is interesting, apparently the dependency was already there, but it was unused.

Should remove the ^ to be consistent with other non-ranged dependencies.

"grunt-jscs": "2.0.0",
"grunt-sass": "1.0.0",
"grunt-selenium-server": "0.1.2",
Expand Down
2 changes: 1 addition & 1 deletion tasks/alias.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = function( grunt ) {
grunt.registerTask( "default", [ "test" ] );
grunt.registerTask( "test", [ "build", "jshint", "jscs", "csslint" ] );
grunt.registerTask( "test", [ "build", "jshint", "jscs", "csslint", "htmllint" ] );
grunt.registerTask( "build", [ "variables", "svg", "sass", "csscomb", "cssmin" ] );
grunt.registerTask( "perf", [
"start-selenium-server",
Expand Down