grunt: Comment out currently failing tasks

This way I can cross check if the integration with the build chain works based
on node2nix and also if the EE edition might be affected.
This commit is contained in:
Johannes Bornhold 2016-08-26 15:12:48 +02:00
parent 32466dc650
commit 5997e4e978

View file

@ -183,5 +183,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-crisper');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', ['less:production', 'less:components', 'concat:polymercss', 'copy','vulcanize', 'concat:dist']);
// TODO: johbo: missing bower bits
// grunt.registerTask('default', ['less:production', 'less:components', 'concat:polymercss', 'copy','vulcanize', 'concat:dist']);
grunt.registerTask('default', ['less:production', 'concat:dist']);
};