Skip to content

Commit 5793311

Browse files
committed
fix(benchmarks): use explicit main() function and do not reexport
Otherwise `pub` would not pick it up e.g. for `dart2js`.
1 parent 1cd848d commit 5793311

File tree

1 file changed

+5
-1
lines changed
  • modules/benchmarks/src/change_detection

1 file changed

+5
-1
lines changed
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
export {main} from './change_detection_benchmark';
1+
import * as change_detection_benchmark from './change_detection_benchmark';
2+
3+
export function main() {
4+
change_detection_benchmark.main();
5+
}

0 commit comments

Comments
 (0)