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.8 | 3 version: 0.1.8 |
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 23 matching lines...) Expand all Loading... | |
34 sdk: ">=1.12.0-dev.1.1 <2.0.0" | 34 sdk: ">=1.12.0-dev.1.1 <2.0.0" |
35 | 35 |
36 executables: | 36 executables: |
37 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 37 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
38 # "dartdevc". | 38 # "dartdevc". |
39 dartdevc: dartdevc | 39 dartdevc: dartdevc |
40 dev_compiler: | 40 dev_compiler: |
41 # 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 |
42 # a very recent iojs next-nightly version). | 42 # a very recent iojs next-nightly version). |
43 dartdevrun: devrun | 43 dartdevrun: devrun |
44 dependency_overrides: | |
Leaf
2015/10/07 21:48:38
You'll want to make sure to take this out.
| |
45 analyzer: | |
46 path: ../dart/sdk/pkg/analyzer/ | |
OLD | NEW |