* docs(toh-6/dart): first edition of prose and example code NOTE: this PR depends on #1686. Dart prose and example match TS except that: - No child-to-parent event emission occurs. - Support for Add Hero is added as an unconditional feature of the Heroes view. - http `_post` takes only a name - http `delete` takes only a hero id. - The Dart in-memory-data-service has been dropped in favor of an implementation based on the "standard" `http.testing.MockClient` class. * post-review changes
29 lines
773 B
YAML
29 lines
773 B
YAML
# #docregion , additions
|
|
name: angular2_tour_of_heroes
|
|
# #enddocregion additions
|
|
description: Tour of Heroes
|
|
version: 0.0.1
|
|
environment:
|
|
sdk: '>=1.13.0 <2.0.0'
|
|
# #docregion additions
|
|
dependencies:
|
|
angular2: 2.0.0-beta.17
|
|
# #enddocregion additions
|
|
browser: ^0.10.0
|
|
dart_to_js_script_rewriter: ^1.0.1
|
|
# #docregion additions
|
|
http: ^0.11.0
|
|
transformers:
|
|
- angular2:
|
|
# #enddocregion additions
|
|
platform_directives:
|
|
- 'package:angular2/common.dart#COMMON_DIRECTIVES'
|
|
platform_pipes:
|
|
- 'package:angular2/common.dart#COMMON_PIPES'
|
|
# #docregion additions
|
|
entry_points: web/main.dart
|
|
resolved_identifiers:
|
|
BrowserClient: 'package:http/browser_client.dart'
|
|
Client: 'package:http/http.dart'
|
|
- dart_to_js_script_rewriter
|