Skip to content

Commit 23ef4b4

Browse files
committed
#182: trying to fix npm 3
1 parent b3bb32b commit 23ef4b4

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

Gruntfile.js

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = function(grunt) {
1010
var appPort = grunt.option('app-port') || 8080;
1111

1212
// load all grunt tasks matching the `grunt-*` pattern
13-
require('load-grunt-tasks')(grunt);
13+
//require('load-grunt-tasks')(grunt);
1414

1515
// measuring processing time
1616
require('time-grunt')(grunt);
@@ -194,6 +194,20 @@ module.exports = function(grunt) {
194194
}
195195
});
196196

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+
197211
/*
198212
*
199213
* Custom tasks

0 commit comments

Comments
 (0)