Skip to content

Commit

Permalink
fix: copy assets as the last build step
Browse files Browse the repository at this point in the history
Avoid optimizing external images.
  • Loading branch information
dessant committed Apr 30, 2018
1 parent 3deba4e commit 2981d71
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,11 @@ gulp.task('copy', function() {

gulp.task(
'build',
gulpSeq('clean', [
'js',
'html',
'icons',
'fonts',
'locale',
'manifest',
gulpSeq(
'clean',
['js', 'html', 'icons', 'fonts', 'locale', 'manifest'],
'copy'
])
)
);

gulp.task('default', ['build']);

0 comments on commit 2981d71

Please sign in to comment.