diff options
| author | gdi2290 | 2014-02-01 23:14:07 -0800 |
|---|---|---|
| committer | Caitlin Potter | 2014-02-03 19:25:47 -0500 |
| commit | e7ac7aa43b88932a08140c2dabb8000e285f06d7 (patch) | |
| tree | c5d642bcd96e616e7942164b259fc7b1144c8e88 /Gruntfile.js | |
| parent | 37781ed14587f96a97e5cbb6e29a66399f84a6fd (diff) | |
| download | angular.js-e7ac7aa43b88932a08140c2dabb8000e285f06d7.tar.bz2 | |
chore(Gruntfile.js, package.json): use load-grunt-tasks and move grunt-contrib-jshint into devDependencies
Closes #6085
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index d66f6620..ff4db327 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -4,18 +4,8 @@ var path = require('path'); module.exports = function(grunt) { //grunt plugins - grunt.loadNpmTasks('grunt-bump'); - grunt.loadNpmTasks('grunt-contrib-clean'); - grunt.loadNpmTasks('grunt-contrib-connect'); - grunt.loadNpmTasks('grunt-contrib-compress'); - grunt.loadNpmTasks('grunt-contrib-copy'); - grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.loadNpmTasks('grunt-ddescribe-iit'); - grunt.loadNpmTasks('grunt-jasmine-node'); - grunt.loadNpmTasks("grunt-jscs-checker"); - grunt.loadNpmTasks('grunt-merge-conflict'); - grunt.loadNpmTasks('grunt-parallel'); - grunt.loadNpmTasks('grunt-shell'); + require('load-grunt-tasks')(grunt); + grunt.loadTasks('lib/grunt'); var NG_VERSION = util.getVersion(); |
