1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-27 17:29:39 +02:00

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

This commit is contained in:
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

View file

@ -16,9 +16,9 @@ module.exports = function (grunt) {
'html2js', 'html2js',
'useminPrepare:release', 'useminPrepare:release',
'concat', 'concat',
'postcss:build',
'clean:tmpl', 'clean:tmpl',
'replace', 'replace',
'postcss:build',
'uglify' 'uglify'
]); ]);
grunt.registerTask('after-copy', [ grunt.registerTask('after-copy', [
@ -218,7 +218,7 @@ gruntfile_cfg.postcss = {
cssnano() // minify the result cssnano() // minify the result
] ]
}, },
src: '<%= distdir %>/css/<%= pkg.name %>.css', src: '.tmp/concat/css/app.css',
dest: '<%= distdir %>/css/app.css' dest: '<%= distdir %>/css/app.css'
} }
}; };