Skip to content

Commit b5431e4

Browse files
committed
fix(build): only pass ts files to ts2dart transpilation.
Originally, we had .js as transpilation targets, but all those files have been converted.
1 parent 83e99fc commit b5431e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/broccoli/broccoli-ts2dart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import ts2dart = require('ts2dart');
1010
import {wrapDiffingPlugin, DiffingBroccoliPlugin, DiffResult} from './diffing-broccoli-plugin';
1111

1212
class TSToDartTranspiler implements DiffingBroccoliPlugin {
13-
static includeExtensions = ['.js', '.ts'];
13+
static includeExtensions = ['.ts'];
1414

1515
private basePath: string;
1616
private transpiler: ts2dart.Transpiler;

0 commit comments

Comments
 (0)