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

Side by Side Diff: pubspec.yaml

Issue 1150143006: fixes #201, add support for custom URL mapping (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
1 name: dev_compiler 1 name: dev_compiler
2 version: 0.1.0 2 version: 0.1.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 author: Dart Dev Compiler team <dev-compiler@dartlang.org> 6 author: Dart Dev Compiler team <dev-compiler@dartlang.org>
7 homepage: https://github.com/dart-lang/dev_compiler 7 homepage: https://github.com/dart-lang/dev_compiler
8 dependencies: 8 dependencies:
9 analyzer: ^0.25.0 9 analyzer: ^0.25.0
10 args: ">=0.12.1 <0.14.0" 10 args: ^0.13.0
Jennifer Messerly 2015/06/02 21:37:27 0.13 changed how comma split works
11 cli_util: ^0.0.1 11 cli_util: ^0.0.1
12 crypto: ^0.9.0 12 crypto: ^0.9.0
13 html: ^0.12.0 13 html: ^0.12.0
14 logging: ">=0.9.3 <0.12.0" 14 logging: ">=0.9.3 <0.12.0"
15 path: ^1.3.0 15 path: ^1.3.0
16 shelf: ^0.6.0 16 shelf: ^0.6.0
17 shelf_static: ^0.2.1 17 shelf_static: ^0.2.1
18 source_maps: ^0.10.0 18 source_maps: ^0.10.0
19 source_span: ^1.1.2 19 source_span: ^1.1.2
20 stack_trace: ^1.1.1 20 stack_trace: ^1.1.1
21 yaml: ^2.1.2 21 yaml: ^2.1.2
22 dev_dependencies: 22 dev_dependencies:
23 # We pin a specific version to ensure everyone is formatting the code exactly 23 # We pin a specific version to ensure everyone is formatting the code exactly
24 # the same way. This is because any change in dart_style, even non-breaking 24 # the same way. This is because any change in dart_style, even non-breaking
25 # changes, may change the output format. 25 # changes, may change the output format.
26 dart_style: 0.1.8 26 dart_style: 0.1.8
27 pub_semver: ^1.1.0 27 pub_semver: ^1.1.0
28 test: ^0.12.0 28 test: ^0.12.0
29 environment: 29 environment:
30 sdk: ">=1.9.0 <2.0.0" 30 sdk: ">=1.9.0 <2.0.0"
31 executables: 31 executables:
32 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use 32 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use
33 # "dartdevc" and "devc.dart" 33 # "dartdevc" and "devc.dart"
34 dartdevc: devc 34 dartdevc: devc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698