From 63b9430cccd8762e68a5791d455d21c0a048324d Mon Sep 17 00:00:00 2001 From: linagee Date: Wed, 26 Aug 2015 08:22:32 -0600 Subject: [PATCH] Don't loadNpmTasks grunt-cli (not needed) This was causing a "grunt-cli not found" message even when you had the grunt-cli npm module installed. --- Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 5909c4e15..8a6a45129 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -23,7 +23,7 @@ module.exports = (grunt) -> src: ['test/**/*.js'] grunt.loadTasks "tasks" - require('matchdep').filterAll('grunt-*').forEach(grunt.loadNpmTasks) + require('matchdep').filterAll(['grunt-*','!grunt-cli']).forEach(grunt.loadNpmTasks) grunt.registerTask 'default', ['clean'] grunt.registerTask 'build', ['clean', 'coffee']