# HG changeset patch # User Johannes Bornhold # Date 2016-08-26 13:12:48 # Node ID 8f31427b63e51daf25689d85199ec6840c0417f2 # Parent a198b78fde2d2ba55d12e41ef50f0aa4cd944584 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. diff --git a/Gruntfile.js b/Gruntfile.js --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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']); };