From d34b1d5f9deab4a29f6c1723cd55c14ecce043b9 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Tue, 13 Mar 2018 21:09:02 +1000 Subject: [PATCH] fix(build-system): fix task order after fontawesome5 integration (#1724) --- gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index 15c1fd81e..05ed1323f 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -16,9 +16,9 @@ module.exports = function (grunt) { 'html2js', 'useminPrepare:release', 'concat', - 'postcss:build', 'clean:tmpl', 'replace', + 'postcss:build', 'uglify' ]); grunt.registerTask('after-copy', [ @@ -218,7 +218,7 @@ gruntfile_cfg.postcss = { cssnano() // minify the result ] }, - src: '<%= distdir %>/css/<%= pkg.name %>.css', + src: '.tmp/concat/css/app.css', dest: '<%= distdir %>/css/app.css' } };