Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(platform/browser): use bundler for bootstrap
BREAKING CHANGES: You have to bootstrap your app via root component like Angular 2 does. This is because we use now tree resolving algorithm for building Angular.module before: ```typescript import {bootstrap} from 'ng-metadata/platform'; import {AppModule} from './index'; // string bootstrap(AppModule); ``` after: ```typescript import {bootstrap} from 'ng-metadata/platform'; import {LegacyModule} from './index'; // string import {AppComponent} from './index'; // class with @component decorator bootstrap(AppComponent, [LegacyModule]); ```
- Loading branch information