diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2012-07-24 22:55:06 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-07-24 22:55:06 -0400 |
commit | 717cb2a5c7909ed16f7c599b02759b27fd2e4258 (patch) | |
tree | ad881b94b738fc51d970f775ba97cf9ea5dfe180 | |
parent | 077987876bbd01b8b48a72b3573694fafaa44d39 (diff) | |
download | jquery-717cb2a5c7909ed16f7c599b02759b27fd2e4258.tar.gz jquery-717cb2a5c7909ed16f7c599b02759b27fd2e4258.zip |
Add grunt-git-authors task.
-rw-r--r-- | grunt.js | 3 | ||||
-rw-r--r-- | package.json | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -121,8 +121,9 @@ module.exports = function( grunt ) { // Short list as a high frequency watch task grunt.registerTask( "dev", "selector build:*:* lint" ); - // Load the "compare_size" task from NPM packages + // Load grunt tasks from NPM packages grunt.loadNpmTasks( "grunt-compare-size" ); + grunt.loadNpmTasks( "grunt-git-authors" ); grunt.registerTask( "testswarm", function( commit, configFile ) { var testswarm = require( "testswarm" ), diff --git a/package.json b/package.json index ecebd2cc2..3ac92df77 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,7 @@ "dependencies": {}, "devDependencies": { "grunt-compare-size": ">=0.1.0", + "grunt-git-authors": ">=1.0.0", "grunt": "~0.3.9", "testswarm": "0.2.2" }, |