mirror of https://github.com/portainer/portainer
fix(build-system): fix task order after fontawesome5 integration (#1724)
parent
66f29dd103
commit
d34b1d5f9d
|
@ -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'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue