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 |
Bob Nystrom
2016/09/28 16:02:47
It would be good to leave a comment here explainin
vsm
2016/09/28 16:10:03
Note - per kevmoo's suggestion, I was able to dele
| |
10 dependencies: | |
11 analyzer: ^0.29.0-alpha.0 | |
12 args: ^0.13.0 | |
13 bazel_worker: ^0.1.0 | |
14 browser: ^0.10.0 | |
15 cli_util: ^0.0.1 | |
16 func: ^0.1.0 | |
17 html: ^0.12.0 | |
18 js: ^0.6.0 | |
19 meta: ^1.0.3 | |
20 path: ^1.3.0 | |
21 pub_semver: ^1.1.0 | |
22 source_maps: ^0.10.0 | |
23 source_span: ^1.0.2 | |
24 | |
25 dev_dependencies: | |
26 # We pin a specific version to ensure everyone is formatting the code exactly | |
27 # the same way. This is because any change in dart_style, even non-breaking | |
28 # changes, may change the output format. | |
29 dart_style: 0.2.4 | |
30 test: ^0.12.0 | |
31 unittest: ^0.11.6 | |
32 webdriver: ^1.1.0 | |
33 | |
34 dependency_overrides: | |
35 # Depend directly on packages in the same repositiory | |
36 analyzer: { path: ../analyzer } | |
37 meta: { path: ../meta } | |
38 | |
39 environment: | 10 environment: |
40 sdk: ">=1.12.0 <2.0.0" | 11 sdk: ">=1.12.0 <2.0.0" |
OLD | NEW |