From 7f00ee43ba542e6847a95a639969935201ff0c4f Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 27 Jul 2016 16:58:00 -0700 Subject: Fix nondeterministic build We used to be able to copy static resources while we built js, but now part of the copy task is copying firefox built files into chrome, so they need to be done in order. This could probably be optimized a bit more, but for now it builds reliably again. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gulpfile.js') diff --git a/gulpfile.js b/gulpfile.js index c71ccb652..0d31eeb5b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -126,7 +126,7 @@ gulp.task('zip', gulp.parallel('zip:chrome', 'zip:firefox')) // high level tasks gulp.task('dev', gulp.series('dev:js', 'copy', gulp.parallel('copy:watch', 'dev:reload'))) -gulp.task('build', gulp.series('clean', gulp.parallel('build:js', 'copy'))) +gulp.task('build', gulp.series('clean', 'build:js', 'copy')) gulp.task('dist', gulp.series('build', 'zip')) // task generators -- cgit v1.2.3