disable hub (processing of Gruntfile.js in apps/subdirs), unless we need it, as it gives a warning if none found

This commit is contained in:
Ralf Becker 2016-05-25 15:06:04 +02:00
parent 5f96c66492
commit fc6d854870

View File

@ -401,9 +401,9 @@ module.exports = function (grunt) {
// Load the plugin that runs tasks only on modified files // Load the plugin that runs tasks only on modified files
grunt.loadNpmTasks('grunt-newer'); grunt.loadNpmTasks('grunt-newer');
// run Gruntfile.js in apps / sub-directories // uncomment to run Gruntfile.js in apps / sub-directories
grunt.loadNpmTasks('grunt-hub'); //grunt.loadNpmTasks('grunt-hub');
// Default task(s). // Default task(s).
grunt.registerTask('default', ['newer:uglify', 'newer:cssmin', 'hub']); grunt.registerTask('default', ['newer:uglify', 'newer:cssmin']);//, 'hub']);
}; };