Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6dcfccb

Browse files
committed
chore(grunt): sort the grunt task load statements
1 parent e2173f9 commit 6dcfccb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ module.exports = function(grunt) {
66
//grunt plugins
77
grunt.loadNpmTasks('grunt-bump');
88
grunt.loadNpmTasks('grunt-contrib-clean');
9-
grunt.loadNpmTasks('grunt-contrib-copy');
109
grunt.loadNpmTasks('grunt-contrib-connect');
1110
grunt.loadNpmTasks('grunt-contrib-compress');
12-
grunt.loadNpmTasks('grunt-jasmine-node');
11+
grunt.loadNpmTasks('grunt-contrib-copy');
12+
grunt.loadNpmTasks('grunt-contrib-jshint');
1313
grunt.loadNpmTasks('grunt-ddescribe-iit');
14+
grunt.loadNpmTasks('grunt-jasmine-node');
1415
grunt.loadNpmTasks('grunt-merge-conflict');
1516
grunt.loadNpmTasks('grunt-parallel');
1617
grunt.loadNpmTasks('grunt-shell');
17-
grunt.loadNpmTasks('grunt-contrib-jshint');
1818
grunt.loadTasks('lib/grunt');
1919

2020
var NG_VERSION = util.getVersion();

0 commit comments

Comments
 (0)