# HG changeset patch # User Marcin Lulek # Date 2016-09-29 15:58:28 # Node ID 4dac00630f998c936be199ca96ade61d784b6620 # Parent ae526446b157ba5b02c32bce293a0ed6e05d9df9 grunt: run concat before vulcanize diff --git a/Gruntfile.js b/Gruntfile.js --- a/Gruntfile.js +++ b/Gruntfile.js @@ -11,5 +11,5 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-crisper'); grunt.loadNpmTasks('grunt-contrib-copy'); - grunt.registerTask('default', ['less:production', 'less:components', 'concat:polymercss', 'copy','vulcanize', 'crisper', 'concat:dist']); + grunt.registerTask('default', ['less:production', 'less:components', 'concat:polymercss', 'copy', 'concat:dist', 'vulcanize', 'crisper']); };