There was an error while loading. Please reload this page.
1 parent a9ce454 commit 85ec34dCopy full SHA for 85ec34d
tools/broccoli/broccoli-ts2dart.ts
@@ -20,7 +20,8 @@ class TSToDartTranspiler implements DiffingBroccoliPlugin {
20
}
21
22
rebuild(treeDiff: DiffResult) {
23
- let toEmit = [];
+ // replace with toEmit = [] once https://github.com/angular/angular/issues/3770 is fixed
24
+ let toEmit = [path.resolve(this.inputPath, 'angular2/traceur-runtime.d.ts')];
25
let getDartFilePath = (path: string) => path.replace(/((\.js)|(\.ts))$/i, '.dart');
26
treeDiff.addedPaths.concat(treeDiff.changedPaths)
27
.forEach((changedPath) => {
0 commit comments