| OLD | NEW |
| 1 name: dev_compiler | 1 name: dev_compiler |
| 2 # When updating this version, also update the version in lib/devc.dart. | 2 version: 0.2.0 |
| 3 version: 0.1.24 | |
| 4 description: > | 3 description: > |
| 5 Experimental Dart to JavaScript compiler designed to create idiomatic, | 4 Experimental Dart to JavaScript compiler designed to create idiomatic, |
| 6 readable JavaScript output. | 5 readable JavaScript output. |
| 7 | 6 |
| 8 author: Dart Dev Compiler team <dev-compiler@dartlang.org> | 7 author: Dart Dev Compiler team <dev-compiler@dartlang.org> |
| 9 homepage: https://github.com/dart-lang/dev_compiler | 8 homepage: https://github.com/dart-lang/dev_compiler |
| 10 | 9 |
| 11 dependencies: | 10 dependencies: |
| 12 analyzer: ^0.27.3-alpha.5 | 11 analyzer: ^0.27.3 |
| 13 args: ^0.13.0 | 12 args: ^0.13.0 |
| 14 cli_util: ^0.0.1 | 13 cli_util: ^0.0.1 |
| 15 func: ^0.1.0 | 14 func: ^0.1.0 |
| 16 html: ^0.12.0 | 15 html: ^0.12.0 |
| 17 js: ^0.6.0 | 16 js: ^0.6.0 |
| 18 logging: ">=0.9.2 <0.12.0" | |
| 19 path: ^1.3.0 | 17 path: ^1.3.0 |
| 20 pub_semver: ^1.1.0 | 18 pub_semver: ^1.1.0 |
| 21 shelf: ">=0.5.6 <0.7.0" | |
| 22 shelf_static: ^0.2.1 | |
| 23 source_maps: ^0.10.0 | 19 source_maps: ^0.10.0 |
| 24 source_span: ^1.0.2 | 20 source_span: ^1.0.2 |
| 25 yaml: ^2.1.2 | |
| 26 | 21 |
| 27 dev_dependencies: | 22 dev_dependencies: |
| 28 # We pin a specific version to ensure everyone is formatting the code exactly | 23 # We pin a specific version to ensure everyone is formatting the code exactly |
| 29 # the same way. This is because any change in dart_style, even non-breaking | 24 # the same way. This is because any change in dart_style, even non-breaking |
| 30 # changes, may change the output format. | 25 # changes, may change the output format. |
| 31 dart_style: 0.2.4 | 26 dart_style: 0.2.4 |
| 32 test: ^0.12.0 | 27 test: ^0.12.0 |
| 33 webdriver: ^0.8.8 | 28 webdriver: ^0.8.8 |
| 34 | 29 |
| 35 environment: | 30 environment: |
| 36 sdk: ">=1.12.0 <2.0.0" | 31 sdk: ">=1.12.0 <2.0.0" |
| 37 | 32 |
| 38 executables: | 33 executables: |
| 39 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 34 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
| 40 # "dartdevc". | 35 # "dartdevc". |
| 41 dartdevc: dartdevc | 36 dartdevc: dartdevc |
| 42 dev_compiler: dartdevc | 37 dev_compiler: dartdevc |
| 43 # Similar to dartdevc, but runs the (single) entry point with iojs (requires | |
| 44 # a very recent iojs next-nightly version). | |
| 45 dartdevrun: devrun | |
| OLD | NEW |