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

Side by Side Diff: pubspec.yaml

Issue 1884073003: Add bazel worker support to the dev compiler. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: remove hacks since they are no longer necessary Created 4 years, 8 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.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.27.3 11 analyzer: ^0.27.3
12 args: ^0.13.0 12 args: ^0.13.0
13 bazel_worker: ^0.1.0
13 cli_util: ^0.0.1 14 cli_util: ^0.0.1
14 func: ^0.1.0 15 func: ^0.1.0
15 html: ^0.12.0 16 html: ^0.12.0
16 js: ^0.6.0 17 js: ^0.6.0
17 path: ^1.3.0 18 path: ^1.3.0
18 pub_semver: ^1.1.0 19 pub_semver: ^1.1.0
19 source_maps: ^0.10.0 20 source_maps: ^0.10.0
20 source_span: ^1.0.2 21 source_span: ^1.0.2
21 22
22 dev_dependencies: 23 dev_dependencies:
23 # We pin a specific version to ensure everyone is formatting the code exactly 24 # 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 25 # the same way. This is because any change in dart_style, even non-breaking
25 # changes, may change the output format. 26 # changes, may change the output format.
26 dart_style: 0.2.4 27 dart_style: 0.2.4
27 test: ^0.12.0 28 test: ^0.12.0
28 webdriver: ^0.8.8 29 webdriver: ^0.8.8
29 30
30 environment: 31 environment:
31 sdk: ">=1.12.0 <2.0.0" 32 sdk: ">=1.12.0 <2.0.0"
32 33
33 executables: 34 executables:
34 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use 35 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use
35 # "dartdevc". 36 # "dartdevc".
36 dartdevc: dartdevc 37 dartdevc: dartdevc
37 dev_compiler: dartdevc 38 dev_compiler: dartdevc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698