Change `ngFor=“#…”` to `ngFor=“let…` in code. All are .dart files except for `app_component.html` which also has changes for: - `<inpuf var-foo…`> to `<input ref-foo…>` - `#docregion` tag name updates from var-foo to ref-foo. - Other misc updates to minimize diffs with TS version of file, whitespace differences were ignored. + Minor update to sync up Dart prose with TS prose. + Used https://github.com/angular/angular/wiki/Angular-2-Dart-Transformer#resol ved_identifiers to solve https://github.com/angular/angular.io/issues/1033 Guide/pipes not updated as it will be rolled back to beta.15 in PR #1220.
		
			
				
	
	
		
			23 lines
		
	
	
		
			637 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			637 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # #docregion
 | |
| name: server_communication
 | |
| description: Server Communication
 | |
| version: 0.0.1
 | |
| environment:
 | |
|   sdk: '>=1.13.0 <2.0.0'
 | |
| dependencies:
 | |
|   angular2: 2.0.0-beta.17
 | |
|   browser: ^0.10.0
 | |
|   dart_to_js_script_rewriter: ^1.0.1
 | |
|   http: ^0.11.3+3
 | |
|   jsonpadding: ^0.1.0
 | |
|   stream_transformers: ^0.3.0+3
 | |
|   http_in_memory_web_api: ^0.0.1
 | |
| transformers:
 | |
| - angular2:
 | |
|     platform_directives: 'package:angular2/common.dart#CORE_DIRECTIVES'
 | |
|     platform_pipes: 'package:angular2/common.dart#COMMON_PIPES'
 | |
|     entry_points: 'web/main.dart'
 | |
|     resolved_identifiers:
 | |
|         BrowserClient: 'package:http/browser_client.dart'
 | |
| - dart_to_js_script_rewriter
 |