style(dart/transform): Remove src from library directives

Conform to Angular 2 style by removing `src` from library directives.
Completed with:
```
find -name "*.dart" | xargs sed -i -e 's!library\(.*\)src\.\(.*\)!library \1\2!'
```

Closes #1005

Closes #1038
This commit is contained in:
Tim Blasi
2015-03-20 15:37:09 -07:00
committed by Misko Hevery
parent 02aa8e7945
commit 8baedca972
36 changed files with 37 additions and 37 deletions
@@ -1,4 +1,4 @@
library examples.src.hello_world.index_common_dart;
library examples.hello_world.index_common_dart;
import 'hello.dart';
import 'package:angular2/angular2.dart'
@@ -1,4 +1,4 @@
library examples.src.hello_world.index_common_dart;
library examples.hello_world.index_common_dart;
import 'hello.dart';
import 'package:angular2/angular2.dart'
@@ -1,4 +1,4 @@
library examples.src.hello_world.index_common_dart;
library examples.hello_world.index_common_dart;
import 'hello.dart';
import 'package:angular2/angular2.dart'
@@ -1,4 +1,4 @@
library examples.src.hello_world.index_common_dart;
library examples.hello_world.index_common_dart;
import 'hello.dart';
import 'package:angular2/angular2.dart'