| 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.13 | 3 version: 0.1.13 |
| 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 # Pinning a specific version of the analyzer as we don't support newer ones ye
t | |
| 13 # (https://github.com/dart-lang/dev_compiler/issues/393). | |
| 14 analyzer: 0.26.2+1 | |
| 15 args: ^0.13.0 | 12 args: ^0.13.0 |
| 16 cli_util: ^0.0.1 | 13 cli_util: ^0.0.1 |
| 17 crypto: ^0.9.0 | 14 crypto: ^0.9.0 |
| 18 html: ^0.12.0 | 15 html: ^0.12.0 |
| 19 js: ">=0.6.0 <0.7.0" | 16 js: ">=0.6.0 <0.7.0" |
| 20 logging: ">=0.9.2 <0.12.0" | 17 logging: ">=0.9.2 <0.12.0" |
| 21 path: ^1.3.0 | 18 path: ^1.3.0 |
| 22 pub_semver: ^1.1.0 | 19 pub_semver: ^1.1.0 |
| 23 shelf: ">=0.5.6 <0.7.0" | 20 shelf: ">=0.5.6 <0.7.0" |
| 24 shelf_static: ^0.2.1 | 21 shelf_static: ^0.2.1 |
| 25 source_maps: ^0.10.0 | 22 source_maps: ^0.10.0 |
| 26 source_span: ^1.0.2 | 23 source_span: ^1.0.2 |
| 27 yaml: ^2.1.2 | 24 yaml: ^2.1.2 |
| 28 | 25 |
| 29 dev_dependencies: | 26 dev_dependencies: |
| 30 # We pin a specific version to ensure everyone is formatting the code exactly | 27 # 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 | 28 # the same way. This is because any change in dart_style, even non-breaking |
| 32 # changes, may change the output format. | 29 # changes, may change the output format. |
| 33 dart_style: 0.2.0 | 30 dart_style: 0.2.2 |
| 34 test: ^0.12.0 | 31 test: ^0.12.0 |
| 35 | 32 |
| 36 environment: | 33 environment: |
| 37 sdk: ">=1.12.0 <2.0.0" | 34 sdk: ">=1.12.0 <2.0.0" |
| 38 | 35 |
| 39 executables: | 36 executables: |
| 40 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 37 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
| 41 # "dartdevc". | 38 # "dartdevc". |
| 42 dartdevc: dartdevc | 39 dartdevc: dartdevc |
| 43 dev_compiler: | 40 dev_compiler: |
| 44 # Similar to dartdevc, but runs the (single) entry point with iojs (requires | 41 # Similar to dartdevc, but runs the (single) entry point with iojs (requires |
| 45 # a very recent iojs next-nightly version). | 42 # a very recent iojs next-nightly version). |
| 46 dartdevrun: devrun | 43 dartdevrun: devrun |
| OLD | NEW |