From fc6d854870ccbd23ba70c903d369a2bafd373ea5 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 25 May 2016 15:06:04 +0200 Subject: [PATCH] disable hub (processing of Gruntfile.js in apps/subdirs), unless we need it, as it gives a warning if none found --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 468e9d1206..a020010461 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -401,9 +401,9 @@ module.exports = function (grunt) { // Load the plugin that runs tasks only on modified files grunt.loadNpmTasks('grunt-newer'); - // run Gruntfile.js in apps / sub-directories - grunt.loadNpmTasks('grunt-hub'); + // uncomment to run Gruntfile.js in apps / sub-directories + //grunt.loadNpmTasks('grunt-hub'); // Default task(s). - grunt.registerTask('default', ['newer:uglify', 'newer:cssmin', 'hub']); + grunt.registerTask('default', ['newer:uglify', 'newer:cssmin']);//, 'hub']); };