Index: gulpfile.js |
diff --git a/gulpfile.js b/gulpfile.js |
index ffa20a4eec341dc3f67855836a2be6bb7c6ab4f7..2b4fde23e67d345cf68cf2db6474c955ae8de3b3 100644 |
--- a/gulpfile.js |
+++ b/gulpfile.js |
@@ -516,11 +516,17 @@ gulp.task('ci', function(done) { |
); |
}); |
+gulp.task('tests/transform.dart', function() { |
+ return gulp.src('modules/angular2/test/transform/**') |
+ .pipe(gulp.dest('dist/dart/angular2/test/transform')); |
+}); |
+ |
// ----------------- |
// orchestrated targets |
gulp.task('build.dart', function(done) { |
runSequence( |
['build/deps.js.dart2js', 'build/transpile.dart', 'build/html.dart'], |
+ 'tests/transform.dart', |
'build/pubspec.dart', |
'build/multicopy.dart', |
'build/pubbuild.dart', |