diff options
-rw-r--r-- | Gruntfile.js | 2 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 18aee7593..591af920d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -224,4 +224,6 @@ module.exports = function( grunt ) { grunt.registerTask( "dev", [ "build:*:*", "lint", "uglify", "remove_map_comment", "dist:*" ] ); grunt.registerTask( "default", [ "dev", "test_fast", "compare_size" ] ); + + grunt.registerTask( "precommit_lint", [ "newer:jsonlint", "newer:jshint", "newer:jscs" ] ); }; diff --git a/package.json b/package.json index 67d7a1972..e515cff44 100644 --- a/package.json +++ b/package.json @@ -39,8 +39,10 @@ "grunt-git-authors": "3.1.0", "grunt-jscs": "2.6.0", "grunt-jsonlint": "1.0.7", + "grunt-newer": "1.1.1", "grunt-npmcopy": "0.1.0", "gzip-js": "0.3.2", + "husky": "0.10.2", "jsdom": "5.6.1", "load-grunt-tasks": "3.4.0", "native-promise-only": "0.8.1", |