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

Side by Side Diff: reflectable/pubspec.yaml

Issue 1761423002: Uses analyzer ^0.27.2 rather than a fixed 0.27.1 (Closed) Base URL: https://github.com/dart-lang/reflectable.git@master
Patch Set: Review response 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 | « reflectable/lib/src/transformer_implementation.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 name: reflectable 1 name: reflectable
2 description: > 2 description: >
3 This package allows programmers to reduce certain usages of dynamic 3 This package allows programmers to reduce certain usages of dynamic
4 reflection to a transformer generated specialization with the same 4 reflection to a transformer generated specialization with the same
5 behavior. The generated code does not use dynamic reflection and thus 5 behavior. The generated code does not use dynamic reflection and thus
6 improves the performance of (esp. dart2js) generated code. 6 improves the performance of (esp. dart2js) generated code.
7 version: 0.5.2 7 version: 0.5.2
8 author: The Dart Team <dart@google.com> 8 author: The Dart Team <dart@google.com>
9 homepage: https://www.github.com/dart-lang/reflectable 9 homepage: https://www.github.com/dart-lang/reflectable
10 environment: 10 environment:
11 sdk: '>=1.12.0 <2.0.0' 11 sdk: '>=1.12.0 <2.0.0'
12 dependencies: 12 dependencies:
13 analyzer: 0.27.1 # Temporary constraint: avoid issue with 0.27.1+1. 13 analyzer: ^0.27.2
14 barback: ^0.15.0 14 barback: ^0.15.0
15 code_transformers: ^0.4.0 15 code_transformers: ^0.4.0
16 dart_style: ^0.2.0 16 dart_style: ^0.2.0
17 glob: ^1.1.0 17 glob: ^1.1.0
18 logging: ^0.11.0 18 logging: ^0.11.0
19 dev_dependencies: 19 dev_dependencies:
20 unittest: ^0.11.0 20 unittest: ^0.11.0
21 transformers: 21 transformers:
22 - reflectable/src/transform_import: 22 - reflectable/src/transform_import:
23 $include: lib/reflectable.dart 23 $include: lib/reflectable.dart
24 - $dart2js: 24 - $dart2js:
25 commandLineOptions: [--show-package-warnings] 25 commandLineOptions: [--show-package-warnings]
26 # We do not want to compile anything in this package. 26 # We do not want to compile anything in this package.
27 $include: [] 27 $include: []
OLDNEW
« no previous file with comments | « reflectable/lib/src/transformer_implementation.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698