Skip to content

Commit

Permalink
Merge pull request #236 from SBoudrias/grunt
Browse files Browse the repository at this point in the history
Use load-grunt-tasks module
  • Loading branch information
tbranyen committed Sep 24, 2013
2 parents 846b668 + 3f37698 commit 2750f9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
17 changes: 2 additions & 15 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,21 +183,8 @@ module.exports = function(grunt) {
}
});

// Grunt contribution tasks.
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-cssmin");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-compress");

// Third-party tasks.
grunt.loadNpmTasks("grunt-karma");
grunt.loadNpmTasks("grunt-processhtml");

// Grunt BBB tasks.
grunt.loadNpmTasks("grunt-bbb-server");
grunt.loadNpmTasks("grunt-bbb-requirejs");
grunt.loadNpmTasks("grunt-bbb-styles");
// Load Grunt plugins (every node module prefixed with `grunt-`)
require("load-grunt-tasks")(grunt);

// When running the default Grunt command, just lint the code.
grunt.registerTask("default", [
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"grunt-contrib-compress": "~0.5.2",
"grunt-processhtml": "~0.2.0",
"grunt-karma": "~0.6.2",
"load-grunt-tasks": "~0.1.0",
"karma-jasmine": "~0.1.0",
"karma-mocha": "~0.1.0",
"karma-qunit": "~0.1.0",
Expand Down

0 comments on commit 2750f9f

Please sign in to comment.