mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGE From the app thread, in both TypeScript and Dart, you bootstrap the app using `application` instead of `asyncApplication`. Before: ```TypeScript platform([WORKER_APP_PLATFORM]) .asyncApplication(setupWebWorker, optionalProviders?) .then((ref) => ref.bootstrap(RootComponent)); ``` Now: ```TypeScript platform([WORKER_APP_PLATFORM]) .application([WORKER_APP_APPLICATION]) .bootstrap(RootComponent); ``` closes #5857 Closes #5862 |
||
|---|---|---|
| .. | ||
| bootstrap.server.spec.dart | ||
| message_bus_common.dart | ||
| multi_client_server_message_bus.server.spec.dart | ||
| single_client_server_message_bus.server.spec.dart | ||
| spy_web_socket.dart | ||
| web_socket_message_bus_spec.dart | ||