diff options
| author | Igor Minar | 2014-01-29 14:21:26 -0800 |
|---|---|---|
| committer | Igor Minar | 2014-01-30 10:51:20 -0800 |
| commit | 6dcfccb32c79019f16a2c97ad50cbcc81f61095c (patch) | |
| tree | 972b217d4b2799a441e7b6d471623951406ce580 /Gruntfile.js | |
| parent | e2173f9101545b60367fd95524232fb8cf2eabca (diff) | |
| download | angular.js-6dcfccb32c79019f16a2c97ad50cbcc81f61095c.tar.bz2 | |
chore(grunt): sort the grunt task load statements
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 1ec4d66a..721bc16e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -6,15 +6,15 @@ module.exports = function(grunt) { //grunt plugins grunt.loadNpmTasks('grunt-bump'); grunt.loadNpmTasks('grunt-contrib-clean'); - grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-connect'); grunt.loadNpmTasks('grunt-contrib-compress'); - grunt.loadNpmTasks('grunt-jasmine-node'); + grunt.loadNpmTasks('grunt-contrib-copy'); + grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-ddescribe-iit'); + grunt.loadNpmTasks('grunt-jasmine-node'); grunt.loadNpmTasks('grunt-merge-conflict'); grunt.loadNpmTasks('grunt-parallel'); grunt.loadNpmTasks('grunt-shell'); - grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadTasks('lib/grunt'); var NG_VERSION = util.getVersion(); |
