| OLD | NEW |
| 1 name: dev_compiler | 1 name: dev_compiler |
| 2 version: 0.2.0 | 2 version: 0.2.0 |
| 3 description: > | 3 description: > |
| 4 Experimental Dart to JavaScript compiler designed to create idiomatic, | 4 Experimental Dart to JavaScript compiler designed to create idiomatic, |
| 5 readable JavaScript output. | 5 readable JavaScript output. |
| 6 | 6 |
| 7 author: Dart Dev Compiler team <dev-compiler@dartlang.org> | 7 author: Dart Dev Compiler team <dev-compiler@dartlang.org> |
| 8 homepage: https://github.com/dart-lang/dev_compiler | 8 homepage: https://github.com/dart-lang/dev_compiler |
| 9 | 9 |
| 10 dependencies: | 10 dependencies: |
| 11 analyzer: ^0.27.4-alpha.12 | 11 analyzer: ^0.27.4-alpha.19 |
| 12 args: ^0.13.0 | 12 args: ^0.13.0 |
| 13 bazel_worker: ^0.1.0 | 13 bazel_worker: ^0.1.0 |
| 14 browser: ^0.10.0 |
| 14 cli_util: ^0.0.1 | 15 cli_util: ^0.0.1 |
| 15 func: ^0.1.0 | 16 func: ^0.1.0 |
| 16 html: ^0.12.0 | 17 html: ^0.12.0 |
| 17 js: ^0.6.0 | 18 js: ^0.6.0 |
| 18 path: ^1.3.0 | 19 path: ^1.3.0 |
| 19 pub_semver: ^1.1.0 | 20 pub_semver: ^1.1.0 |
| 20 source_maps: ^0.10.0 | 21 source_maps: ^0.10.0 |
| 21 source_span: ^1.0.2 | 22 source_span: ^1.0.2 |
| 22 | 23 |
| 23 dev_dependencies: | 24 dev_dependencies: |
| 24 # We pin a specific version to ensure everyone is formatting the code exactly | 25 # We pin a specific version to ensure everyone is formatting the code exactly |
| 25 # the same way. This is because any change in dart_style, even non-breaking | 26 # the same way. This is because any change in dart_style, even non-breaking |
| 26 # changes, may change the output format. | 27 # changes, may change the output format. |
| 27 dart_style: 0.2.4 | 28 dart_style: 0.2.4 |
| 28 test: ^0.12.0 | 29 test: ^0.12.0 |
| 29 unittest: ^0.11.6 | 30 unittest: ^0.11.6 |
| 30 webdriver: ^1.1.0 | 31 webdriver: ^1.1.0 |
| 31 | 32 |
| 32 environment: | 33 environment: |
| 33 sdk: ">=1.12.0 <2.0.0" | 34 sdk: ">=1.12.0 <2.0.0" |
| 34 | 35 |
| 35 executables: | 36 executables: |
| 36 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 37 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
| 37 # "dartdevc". | 38 # "dartdevc". |
| 38 dartdevc: dartdevc | 39 dartdevc: dartdevc |
| 39 dev_compiler: dartdevc | 40 dev_compiler: dartdevc |
| OLD | NEW |