fix(build): run dartanalyzer after transpiler and html to avoid races

This commit is contained in:
vsavkin 2014-12-12 16:24:36 -08:00
parent cf8a5d2a0d
commit de855a79b9
1 changed files with 2 additions and 1 deletions

View File

@ -339,7 +339,8 @@ gulp.task('docs/serve', function() {
// orchestrated targets // orchestrated targets
gulp.task('build.dart', function() { gulp.task('build.dart', function() {
return runSequence( return runSequence(
['build/transpile.dart', 'build/html.dart', 'build/pubspec.dart'], ['build/transpile.dart', 'build/html.dart'],
'build/pubspec.dart',
'build/benchpress.dart', 'build/benchpress.dart',
'build/analyze.dart' 'build/analyze.dart'
); );