grunt: run concat before vulcanize

This commit is contained in:
Marcin Lulek 2016-09-29 17:58:28 +02:00
parent 295710d6b5
commit 265860ec2a

View file

@ -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']);
};