Skip to content

Commit de855a7

Browse files
committed
fix(build): run dartanalyzer after transpiler and html to avoid races
1 parent cf8a5d2 commit de855a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gulpfile.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ gulp.task('docs/serve', function() {
339339
// orchestrated targets
340340
gulp.task('build.dart', function() {
341341
return runSequence(
342-
['build/transpile.dart', 'build/html.dart', 'build/pubspec.dart'],
342+
['build/transpile.dart', 'build/html.dart'],
343+
'build/pubspec.dart',
343344
'build/benchpress.dart',
344345
'build/analyze.dart'
345346
);

0 commit comments

Comments
 (0)