| OLD | NEW |
| 1 name: dev_compiler | 1 name: dev_compiler |
| 2 description: Dart dev checker / compiler | 2 version: 0.1.0 |
| 3 description: > |
| 4 Experimental Dart to JavaScript compiler designed to create idiomatic, |
| 5 readable JavaScript output. |
| 6 author: Dart Dev Compiler team <dev-compiler@dartlang.org> |
| 7 homepage: https://github.com/dart-lang/dev_compiler |
| 3 dependencies: | 8 dependencies: |
| 4 analyzer: ^0.24.4 | 9 analyzer: ^0.24.4 |
| 5 args: ^0.12.1 | 10 args: ^0.12.1 |
| 6 cli_util: ^0.0.1 | 11 cli_util: ^0.0.1 |
| 7 crypto: ^0.9.0 | 12 crypto: ^0.9.0 |
| 8 # We pin a specific version to ensure everyone is formatting the code exactly | 13 # We pin a specific version to ensure everyone is formatting the code exactly |
| 9 # the same way. This is because any change in dart_style, even non-breaking | 14 # the same way. This is because any change in dart_style, even non-breaking |
| 10 # changes, may change the output format. | 15 # changes, may change the output format. |
| 11 dart_style: 0.1.7 | 16 dart_style: 0.1.7 |
| 12 html: ^0.12.0 | 17 html: ^0.12.0 |
| 13 logging: ^0.9.2 | 18 logging: ^0.9.2 |
| 14 path: ^1.3.0 | 19 path: ^1.3.0 |
| 15 shelf: ^0.6.0 | 20 shelf: ^0.6.0 |
| 16 shelf_static: ^0.2.1 | 21 shelf_static: ^0.2.1 |
| 17 source_maps: ^0.10.0 | 22 source_maps: ^0.10.0 |
| 18 source_span: ^1.1.2 | 23 source_span: ^1.1.2 |
| 19 stack_trace: ^1.1.1 | 24 stack_trace: ^1.1.1 |
| 20 yaml: ^2.1.2 | 25 yaml: ^2.1.2 |
| 21 dev_dependencies: | 26 dev_dependencies: |
| 22 pub_semver: ^1.1.0 | 27 pub_semver: ^1.1.0 |
| 23 unittest: ^0.11.0 | 28 unittest: ^0.11.0 |
| 29 environment: |
| 30 sdk: ">=1.9.0 <2.0.0" |
| 24 executables: | 31 executables: |
| 25 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use | 32 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use |
| 26 # "dartdevc" and "devc.dart" | 33 # "dartdevc" and "devc.dart" |
| 27 dartdevc: devc | 34 dartdevc: devc |
| OLD | NEW |