build: execute pub get and dart analyzer

When chaining a `pubspec.yaml` we automatically run `pub get`.

In `gulp build` we also run `dartanalyzer` for all files
that have the pattern:

`<module>/lib/<module>.dart`

Closes #13
Closes #5
Closes #2
This commit is contained in:
Tobias Bosch
2014-09-25 17:55:46 -07:00
parent b42111a608
commit 100d66222c
6 changed files with 138 additions and 50 deletions

View File

@ -1,13 +0,0 @@
import 'dart:core' as core;
import 'dart:collection';
class Map {
new() => null;
ping() => core.print('map');
}
main() {
new Map().ping();
}