File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ module.exports = function(grunt) {
10
10
var appPort = grunt . option ( 'app-port' ) || 8080 ;
11
11
12
12
// load all grunt tasks matching the `grunt-*` pattern
13
- require ( 'load-grunt-tasks' ) ( grunt ) ;
13
+ // require('load-grunt-tasks')(grunt);
14
14
15
15
// measuring processing time
16
16
require ( 'time-grunt' ) ( grunt ) ;
@@ -194,6 +194,20 @@ module.exports = function(grunt) {
194
194
}
195
195
} ) ;
196
196
197
+ // Load plugins
198
+ grunt . loadNpmTasks ( 'grunt-autoprefixer' ) ;
199
+ grunt . loadNpmTasks ( 'grunt-contrib-clean' ) ;
200
+ grunt . loadNpmTasks ( 'grunt-contrib-copy' ) ;
201
+ grunt . loadNpmTasks ( 'grunt-contrib-cssmin' ) ;
202
+ grunt . loadNpmTasks ( 'grunt-contrib-htmlmin' ) ;
203
+ grunt . loadNpmTasks ( 'grunt-contrib-jshint' ) ;
204
+ grunt . loadNpmTasks ( 'grunt-contrib-less' ) ;
205
+ grunt . loadNpmTasks ( 'grunt-contrib-uglify' ) ;
206
+ grunt . loadNpmTasks ( 'grunt-contrib-watch' ) ;
207
+ grunt . loadNpmTasks ( 'grunt-jsdoc' ) ;
208
+ grunt . loadNpmTasks ( 'grunt-newer' ) ;
209
+ grunt . loadNpmTasks ( 'grunt-mocha-test' ) ;
210
+
197
211
/*
198
212
*
199
213
* Custom tasks
You can’t perform that action at this time.
0 commit comments