X Tutup
Skip to content

Commit 4320859

Browse files
author
Tim Blasi
committed
chore(dart): Copy css resources in build
Include css resources in the files copied to the dist/dart directory. This fixes 404s occuring when testing the todo/ app.
1 parent 98e7a38 commit 4320859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/broccoli/trees/dart_tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function getSourceTree() {
4646
var tsInputTree = modulesFunnel(['**/*.js', '**/*.ts', '**/*.dart'], ['rtts_assert/**/*']);
4747
var transpiled = ts2dart.transpile(tsInputTree);
4848
// Native sources, dart only examples, etc.
49-
var dartSrcs = modulesFunnel(['**/*.dart', '**/*.ng_meta.json']);
49+
var dartSrcs = modulesFunnel(['**/*.dart', '**/*.ng_meta.json', '**/css/**']);
5050
return mergeTrees([transpiled, dartSrcs]);
5151
}
5252

0 commit comments

Comments
 (0)
X Tutup