| OLD | NEW |
| 1 name: dev_compiler | 1 name: dev_compiler |
| 2 # When updating this version, also update the version in lib/devc.dart. | 2 # When updating this version, also update the version in lib/devc.dart. |
| 3 version: 0.1.17 | 3 version: 0.1.17 |
| 4 description: > | 4 description: > |
| 5 Experimental Dart to JavaScript compiler designed to create idiomatic, | 5 Experimental Dart to JavaScript compiler designed to create idiomatic, |
| 6 readable JavaScript output. | 6 readable JavaScript output. |
| 7 | 7 |
| 8 author: Dart Dev Compiler team <dev-compiler@dartlang.org> | 8 author: Dart Dev Compiler team <dev-compiler@dartlang.org> |
| 9 homepage: https://github.com/dart-lang/dev_compiler | 9 homepage: https://github.com/dart-lang/dev_compiler |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 source_span: ^1.0.2 | 26 source_span: ^1.0.2 |
| 27 yaml: ^2.1.2 | 27 yaml: ^2.1.2 |
| 28 | 28 |
| 29 dev_dependencies: | 29 dev_dependencies: |
| 30 # We pin a specific version to ensure everyone is formatting the code exactly | 30 # We pin a specific version to ensure everyone is formatting the code exactly |
| 31 # the same way. This is because any change in dart_style, even non-breaking | 31 # the same way. This is because any change in dart_style, even non-breaking |
| 32 # changes, may change the output format. | 32 # changes, may change the output format. |
| 33 dart_style: 0.2.2 | 33 dart_style: 0.2.2 |
| 34 test: ^0.12.0 | 34 test: ^0.12.0 |
| 35 transformer_test: ^0.1.0 | 35 transformer_test: ^0.1.0 |
| 36 webdriver: ^0.8.8 |
| 36 | 37 |
| 37 environment: | 38 environment: |
| 38 sdk: ">=1.12.0 <2.0.0" | 39 sdk: ">=1.12.0 <2.0.0" |
| 39 | 40 |
| 40 executables: | 41 executables: |
| 41 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 42 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
| 42 # "dartdevc". | 43 # "dartdevc". |
| 43 dartdevc: dartdevc | 44 dartdevc: dartdevc |
| 44 dev_compiler: | 45 dev_compiler: |
| 45 # Similar to dartdevc, but runs the (single) entry point with iojs (requires | 46 # Similar to dartdevc, but runs the (single) entry point with iojs (requires |
| 46 # a very recent iojs next-nightly version). | 47 # a very recent iojs next-nightly version). |
| 47 dartdevrun: devrun | 48 dartdevrun: devrun |
| OLD | NEW |