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

Side by Side Diff: pubspec.yaml

Issue 1245013005: fixes #259, clone ast before mutation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: revert dependency_overrides in pubspec Created 5 years, 5 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.2 2 version: 0.1.2
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.1 9 analyzer: ^0.25.3-alpha.2
10 args: ^0.13.0 10 args: ^0.13.0
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.2 <0.12.0" 14 logging: ">=0.9.2 <0.12.0"
15 path: ^1.3.0 15 path: ^1.3.0
16 shelf: ">=0.5.6 <0.7.0" 16 shelf: ">=0.5.6 <0.7.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.0.2 19 source_span: ^1.0.2
20 yaml: ^2.1.2 20 yaml: ^2.1.2
21 dev_dependencies: 21 dev_dependencies:
22 # We pin a specific version to ensure everyone is formatting the code exactly 22 # We pin a specific version to ensure everyone is formatting the code exactly
23 # the same way. This is because any change in dart_style, even non-breaking 23 # the same way. This is because any change in dart_style, even non-breaking
24 # changes, may change the output format. 24 # changes, may change the output format.
25 dart_style: 0.1.8 25 dart_style: 0.1.8
26 pub_semver: ^1.1.0 26 pub_semver: ^1.1.0
27 test: ^0.12.0 27 test: ^0.12.0
28 environment: 28 environment:
29 sdk: ">=1.12.0-dev.1.1 <2.0.0" 29 sdk: ">=1.12.0-dev.1.1 <2.0.0"
30 executables: 30 executables:
31 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use 31 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use
32 # "dartdevc" and "devc.dart" 32 # "dartdevc" and "devc.dart"
33 dartdevc: devc 33 dartdevc: devc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698