aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-07-28 07:58:00 +0800
committerDan Finlay <dan@danfinlay.com>2016-07-28 07:58:00 +0800
commit7f00ee43ba542e6847a95a639969935201ff0c4f (patch)
tree37aefb21c1ce5b9bd0f206b224c980ffc3e06d43 /gulpfile.js
parentba21195a4961917944f827e662bcbc1eaa2cb289 (diff)
downloadtangerine-wallet-browser-7f00ee43ba542e6847a95a639969935201ff0c4f.tar
tangerine-wallet-browser-7f00ee43ba542e6847a95a639969935201ff0c4f.tar.gz
tangerine-wallet-browser-7f00ee43ba542e6847a95a639969935201ff0c4f.tar.bz2
tangerine-wallet-browser-7f00ee43ba542e6847a95a639969935201ff0c4f.tar.lz
tangerine-wallet-browser-7f00ee43ba542e6847a95a639969935201ff0c4f.tar.xz
tangerine-wallet-browser-7f00ee43ba542e6847a95a639969935201ff0c4f.tar.zst
tangerine-wallet-browser-7f00ee43ba542e6847a95a639969935201ff0c4f.zip
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.
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
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