angular-cn/modules/playground
Jason Teplitz 006a96dd20 refactor(WebWorker): Make WebWorker bootstrap synchronous
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
2015-12-14 21:04:46 +00:00
..
e2e_test feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
src refactor(WebWorker): Make WebWorker bootstrap synchronous 2015-12-14 21:04:46 +00:00
test/benchpress chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
pubspec.yaml feat(core): provide support for relative assets for components 2015-12-09 16:28:49 -08:00