fix(benchmarks): use explicit `main()` function and do not reexport
Otherwise `pub` would not pick it up e.g. for `dart2js`.
This commit is contained in:
parent
1cd848df55
commit
5793311421
|
@ -1 +1,5 @@
|
||||||
export {main} from './change_detection_benchmark';
|
import * as change_detection_benchmark from './change_detection_benchmark';
|
||||||
|
|
||||||
|
export function main() {
|
||||||
|
change_detection_benchmark.main();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue