From de855a79b98b55f184ea18e68c0e9014308b51d7 Mon Sep 17 00:00:00 2001 From: vsavkin Date: Fri, 12 Dec 2014 16:24:36 -0800 Subject: [PATCH] fix(build): run dartanalyzer after transpiler and html to avoid races --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index a213ff2868..0ef8f08720 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -339,7 +339,8 @@ gulp.task('docs/serve', function() { // orchestrated targets gulp.task('build.dart', function() { return runSequence( - ['build/transpile.dart', 'build/html.dart', 'build/pubspec.dart'], + ['build/transpile.dart', 'build/html.dart'], + 'build/pubspec.dart', 'build/benchpress.dart', 'build/analyze.dart' );