We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaafdf0 commit e1f6679Copy full SHA for e1f6679
tools/broccoli/broccoli-ts2dart.ts
@@ -20,7 +20,11 @@ class TSToDartTranspiler implements DiffingBroccoliPlugin {
20
}
21
22
rebuild(treeDiff: DiffResult) {
23
- let toEmit = [path.resolve(this.inputPath, 'angular2/manual_typings/globals.d.ts')];
+ 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
+ ];
28
let getDartFilePath = (path: string) => path.replace(/((\.js)|(\.ts))$/i, '.dart');
29
treeDiff.addedPaths.concat(treeDiff.changedPaths)
30
.forEach((changedPath) => {
0 commit comments