X Tutup
Skip to content

Commit e1f6679

Browse files
tboschvsavkin
authored andcommitted
chore: make incremental dart tests work again
1 parent aaafdf0 commit e1f6679

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/broccoli/broccoli-ts2dart.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ class TSToDartTranspiler implements DiffingBroccoliPlugin {
2020
}
2121

2222
rebuild(treeDiff: DiffResult) {
23-
let toEmit = [path.resolve(this.inputPath, 'angular2/manual_typings/globals.d.ts')];
23+
let toEmit = [
24+
path.resolve(this.inputPath, 'angular2/manual_typings/globals.d.ts'),
25+
path.resolve(this.inputPath, 'angular2/typings/es6-promise/es6-promise.d.ts'),
26+
path.resolve(this.inputPath, 'angular2/typings/es6-collections/es6-collections.d.ts')
27+
];
2428
let getDartFilePath = (path: string) => path.replace(/((\.js)|(\.ts))$/i, '.dart');
2529
treeDiff.addedPaths.concat(treeDiff.changedPaths)
2630
.forEach((changedPath) => {

0 commit comments

Comments
 (0)
X Tutup