| 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.21 | 3 version: 0.1.21 |
| 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 |
| 11 dependencies: | 11 dependencies: |
| 12 analyzer: ^0.27.2-alpha.1 | 12 analyzer: ^0.27.2-alpha.1 |
| 13 barback: ^0.15.2+7 | 13 barback: ^0.15.2+7 |
| 14 code_transformers: ^0.4.0 | 14 code_transformers: ^0.4.0 |
| 15 args: ^0.13.0 | 15 args: ^0.13.0 |
| 16 cli_util: ^0.0.1 | 16 cli_util: ^0.0.1 |
| 17 crypto: ^0.9.0 | 17 crypto: ^0.9.0 |
| 18 func: ^0.1.0 |
| 18 html: ^0.12.0 | 19 html: ^0.12.0 |
| 19 js: ">=0.6.0 <0.7.0" | 20 js: ">=0.6.0 <0.7.0" |
| 20 logging: ">=0.9.2 <0.12.0" | 21 logging: ">=0.9.2 <0.12.0" |
| 21 path: ^1.3.0 | 22 path: ^1.3.0 |
| 22 pub_semver: ^1.1.0 | 23 pub_semver: ^1.1.0 |
| 23 shelf: ">=0.5.6 <0.7.0" | 24 shelf: ">=0.5.6 <0.7.0" |
| 24 shelf_static: ^0.2.1 | 25 shelf_static: ^0.2.1 |
| 25 source_maps: ^0.10.0 | 26 source_maps: ^0.10.0 |
| 26 source_span: ^1.0.2 | 27 source_span: ^1.0.2 |
| 27 yaml: ^2.1.2 | 28 yaml: ^2.1.2 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 39 sdk: ">=1.12.0 <2.0.0" | 40 sdk: ">=1.12.0 <2.0.0" |
| 40 | 41 |
| 41 executables: | 42 executables: |
| 42 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 43 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
| 43 # "dartdevc". | 44 # "dartdevc". |
| 44 dartdevc: dartdevc | 45 dartdevc: dartdevc |
| 45 dev_compiler: | 46 dev_compiler: |
| 46 # Similar to dartdevc, but runs the (single) entry point with iojs (requires | 47 # Similar to dartdevc, but runs the (single) entry point with iojs (requires |
| 47 # a very recent iojs next-nightly version). | 48 # a very recent iojs next-nightly version). |
| 48 dartdevrun: devrun | 49 dartdevrun: devrun |
| OLD | NEW |