Skip to content

Commit

Permalink
#182: trying to fix npm 3
Browse files Browse the repository at this point in the history
  • Loading branch information
robhrt7 committed Sep 20, 2015
1 parent b3bb32b commit 23ef4b4
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function(grunt) {
var appPort = grunt.option('app-port') || 8080;

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

// measuring processing time
require('time-grunt')(grunt);
Expand Down Expand Up @@ -194,6 +194,20 @@ module.exports = function(grunt) {
}
});

// Load plugins
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-mocha-test');

/*
*
* Custom tasks
Expand Down

0 comments on commit 23ef4b4

Please sign in to comment.