Browse Source

Merge pull request #284 from twbs/load-grunt-tasks

use load-grunt-tasks to load Grunt tasks
pull/286/head
Connor Montgomery 11 years ago
parent
commit
9c36accbd6
  1. 6
      Gruntfile.js
  2. 3
      package.json

6
Gruntfile.js

@ -85,11 +85,7 @@ module.exports = function(grunt) {
}); });
// Load the plugins // Load the plugins
grunt.loadNpmTasks('grunt-contrib-concat'); require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-jekyll');
// Default task(s). // Default task(s).

3
package.json

@ -34,6 +34,7 @@
"grunt-contrib-nodeunit": "~0.3.0", "grunt-contrib-nodeunit": "~0.3.0",
"grunt-contrib-sass": "~0.7.1", "grunt-contrib-sass": "~0.7.1",
"grunt-contrib-watch": "~0.5.3", "grunt-contrib-watch": "~0.5.3",
"grunt-jekyll": "~0.4.1" "grunt-jekyll": "~0.4.1",
"load-grunt-tasks": "~0.4.0"
} }
} }

Loading…
Cancel
Save