Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Side by Side Diff: pubspec.yaml

Issue 1788973002: Remove code that requires whole-program compile (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/transformer.dart ('k') | test/all_tests.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.22 3 version: 0.1.22
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.3-alpha.1 12 analyzer: ^0.27.3-alpha.1
13 barback: ^0.15.2+7
14 code_transformers: ^0.4.0
15 args: ^0.13.0 13 args: ^0.13.0
16 cli_util: ^0.0.1 14 cli_util: ^0.0.1
17 crypto: ^0.9.0
18 func: ^0.1.0 15 func: ^0.1.0
19 html: ^0.12.0 16 html: ^0.12.0
20 js: ^0.6.0 17 js: ^0.6.0
21 logging: ">=0.9.2 <0.12.0" 18 logging: ">=0.9.2 <0.12.0"
22 path: ^1.3.0 19 path: ^1.3.0
23 pub_semver: ^1.1.0 20 pub_semver: ^1.1.0
24 shelf: ">=0.5.6 <0.7.0" 21 shelf: ">=0.5.6 <0.7.0"
25 shelf_static: ^0.2.1 22 shelf_static: ^0.2.1
26 source_maps: ^0.10.0 23 source_maps: ^0.10.0
27 source_span: ^1.0.2 24 source_span: ^1.0.2
28 yaml: ^2.1.2 25 yaml: ^2.1.2
29 26
30 dev_dependencies: 27 dev_dependencies:
31 # We pin a specific version to ensure everyone is formatting the code exactly 28 # We pin a specific version to ensure everyone is formatting the code exactly
32 # the same way. This is because any change in dart_style, even non-breaking 29 # the same way. This is because any change in dart_style, even non-breaking
33 # changes, may change the output format. 30 # changes, may change the output format.
34 dart_style: 0.2.4 31 dart_style: 0.2.4
35 test: ^0.12.0 32 test: ^0.12.0
36 transformer_test: ^0.1.0
37 webdriver: ^0.8.8 33 webdriver: ^0.8.8
38 34
39 environment: 35 environment:
40 sdk: ">=1.12.0 <2.0.0" 36 sdk: ">=1.12.0 <2.0.0"
41 37
42 executables: 38 executables:
43 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use 39 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use
44 # "dartdevc". 40 # "dartdevc".
45 dartdevc: dartdevc 41 dartdevc: dartdevc
46 dev_compiler: 42 dev_compiler: dartdevc
47 # Similar to dartdevc, but runs the (single) entry point with iojs (requires 43 # Similar to dartdevc, but runs the (single) entry point with iojs (requires
48 # a very recent iojs next-nightly version). 44 # a very recent iojs next-nightly version).
49 dartdevrun: devrun 45 dartdevrun: devrun
OLDNEW
« no previous file with comments | « lib/transformer.dart ('k') | test/all_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698