fix(build-system): fix task order after fontawesome5 integration (#1724)

pull/1725/head
Anthony Lapenna 2018-03-13 21:09:02 +10:00 committed by GitHub
parent 66f29dd103
commit d34b1d5f9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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