Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 name: initialize | 1 name: initialize |
| 2 version: 0.3.1+1 | 2 version: 0.4.0 |
| 3 author: Polymer.dart Authors <web@dartlang.org> | 3 author: Polymer.dart Authors <web@dartlang.org> |
| 4 description: Generic building blocks for doing static initialization. | 4 description: Generic building blocks for doing static initialization. |
| 5 homepage: https://github.com/dart-lang/initialize | 5 homepage: https://github.com/dart-lang/initialize |
| 6 dependencies: | 6 dependencies: |
| 7 barback: '>=0.14.2 <0.16.0' | 7 barback: '>=0.14.2 <0.16.0' |
| 8 code_transformers: '>=0.2.3 <0.3.0' | 8 code_transformers: '>=0.2.3 <0.3.0' |
| 9 glob: ">=1.0.4 <2.0.0" | |
| 9 html5lib: '>=0.12.0 <0.13.0' | 10 html5lib: '>=0.12.0 <0.13.0' |
| 10 path: '>=1.3.0 <2.0.0' | 11 path: '>=1.3.0 <2.0.0' |
| 11 dev_dependencies: | 12 dev_dependencies: |
| 12 test_package: | 13 test_package: |
| 13 path: test_package | 14 path: test_package |
| 14 unittest: '>=0.10.0 <0.12.0' | 15 unittest: '>=0.10.0 <0.12.0' |
| 15 environment: | 16 environment: |
| 16 sdk: '>=1.4.0 <2.0.0' | 17 sdk: '>=1.4.0 <2.0.0' |
| 17 transformers: | 18 transformers: |
| 18 - initialize/build/loader_replacer: | 19 - initialize/build/loader_replacer: |
| 19 $include: lib/initialize.dart | 20 $include: lib/initialize.dart |
| 20 - initialize: | 21 - initialize: |
| 21 $include: test/initializer_test.dart | 22 entry_points: |
| 22 entry_point: test/initializer_test.dart | 23 - test/initializer_test.dart |
| 23 - initialize: | 24 - test/initializer_cycle_error_test.dart |
| 24 $include: test/initializer_cycle_error_test.dart | 25 - test/initializer_custom_filter_test.dart |
| 25 entry_point: test/initializer_cycle_error_test.dart | 26 - test/initializer_type_filter_test.dart |
| 26 - initialize: | 27 - test/init_method_test.dart |
|
Siggi Cherem (dart-lang)
2015/02/09 22:55:17
I believe you can also do:
$include:
- test/initi
jakemac
2015/02/09 23:41:05
Hmm, should we do that for all transformers then?
Siggi Cherem (dart-lang)
2015/02/10 01:45:48
it's mainly for iteration speed, so not entirely n
jakemac
2015/02/10 14:56:56
Done.
| |
| 27 $include: test/initializer_custom_filter_test.dart | |
| 28 entry_point: test/initializer_custom_filter_test.dart | |
| 29 - initialize: | |
| 30 $include: test/initializer_type_filter_test.dart | |
| 31 entry_point: test/initializer_type_filter_test.dart | |
| 32 - initialize: | |
| 33 $include: test/init_method_test.dart | |
| 34 entry_point: test/init_method_test.dart | |
| 35 - $dart2js: | 28 - $dart2js: |
| 36 $exclude: '**/*.dart' | 29 $exclude: '**/*.dart' |
| OLD | NEW |