From 5997e4e978f7b44ddac23236654e51fb40ba0855 Mon Sep 17 00:00:00 2001 From: Johannes Bornhold Date: Fri, 26 Aug 2016 15:12:48 +0200 Subject: [PATCH] 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. --- Gruntfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 75741a90..762e9a52 100644 --- 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']); };