Chromium Code Reviews| 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.28.0-alpha.1 | 11 analyzer: ^0.29.0-alpha.0 |
|
Jennifer Messerly
2016/09/12 17:12:14
Should we just make this a file dependency? instea
Bob Nystrom
2016/09/12 18:15:23
If you do that, you won't be able to also publish
Jennifer Messerly
2016/09/12 18:19:00
yeah ... I think maybe we want to stop publishing
| |
| 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 browser: ^0.10.0 |
| 15 cli_util: ^0.0.1 | 15 cli_util: ^0.0.1 |
| 16 func: ^0.1.0 | 16 func: ^0.1.0 |
| 17 html: ^0.12.0 | 17 html: ^0.12.0 |
| 18 js: ^0.6.0 | 18 js: ^0.6.0 |
| 19 path: ^1.3.0 | 19 path: ^1.3.0 |
| 20 pub_semver: ^1.1.0 | 20 pub_semver: ^1.1.0 |
| 21 source_maps: ^0.10.0 | 21 source_maps: ^0.10.0 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 36 path: ../analyzer | 36 path: ../analyzer |
| 37 | 37 |
| 38 environment: | 38 environment: |
| 39 sdk: ">=1.12.0 <2.0.0" | 39 sdk: ">=1.12.0 <2.0.0" |
| 40 | 40 |
| 41 executables: | 41 executables: |
| 42 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 42 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
| 43 # "dartdevc". | 43 # "dartdevc". |
| 44 dartdevc: dartdevc | 44 dartdevc: dartdevc |
| 45 dev_compiler: dartdevc | 45 dev_compiler: dartdevc |
| OLD | NEW |