Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(704)

Unified Diff: gulpfile.js

Issue 927373004: Initial commit of Dart transformer to generate constructor stubs, see https://github.com/angular/an… (Closed) Base URL: https://github.com/kegluneq/angular.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | modules/angular2/pubspec.yaml » ('j') | modules/angular2/pubspec.yaml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
« no previous file with comments | « no previous file | modules/angular2/pubspec.yaml » ('j') | modules/angular2/pubspec.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698