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

Side by Side Diff: pkg/barback/pubspec.yaml

Issue 63363002: SDK constraint and README for barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « pkg/barback/README.md ('k') | tools/publish_barback.py » ('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: barback 1 name: barback
2 version: 0.9.0 2 version: 0.9.0
3 author: "Dart Team <misc@dartlang.org>" 3 author: "Dart Team <misc@dartlang.org>"
4 homepage: http://www.dartlang.org 4 homepage: http://www.dartlang.org
5 description: > 5 description: >
6 An asset build system. 6 An asset build system.
7 7
8 Given a set of input files and a set of transformations (think compilers, 8 Given a set of input files and a set of transformations (think compilers,
9 preprocessors and the like), will automatically apply the appropriate 9 preprocessors and the like), will automatically apply the appropriate
10 transforms and generate output files. When inputs are modified, automatically 10 transforms and generate output files. When inputs are modified, automatically
11 runs the transforms that are affected. 11 runs the transforms that are affected.
12 12
13 Runs transforms asynchronously and in parallel when possible to maximize 13 Runs transforms asynchronously and in parallel when possible to maximize
14 responsiveness. 14 responsiveness.
15 dependencies: 15 dependencies:
16 path: ">=0.9.0 <0.10.0" 16 path: ">=0.9.0 <0.10.0"
17 source_maps: ">=0.9.0 <0.10.0" 17 source_maps: ">=0.9.0 <0.10.0"
18 stack_trace: ">=0.9.0 <0.10.0" 18 stack_trace: ">=0.9.0 <0.10.0"
19 dev_dependencies: 19 dev_dependencies:
20 scheduled_test: ">=0.9.0 <0.10.0" 20 scheduled_test: ">=0.9.0 <0.10.0"
21 unittest: ">=0.9.0 <0.10.0" 21 unittest: ">=0.9.0 <0.10.0"
22
22 environment: 23 environment:
23 sdk: ">=0.8.10+6 <2.0.0" 24 # Barback is tightly coupled to the SDK because pub contains code that is run
25 # against the user's version of barback. We need to ensure that that version
26 # of barback is compatible with the user's version of pub.
27 #
28 # Since the SDK itself can't place constraints on barback, we do a reverse
29 # constraint and have barback itself only allow specific SDK versions.
30 # This ensures that for each SDK version, there is a single known good version
31 # of barback that will be used with it.
32 sdk: "$SDK_CONSTRAINT$"
OLDNEW
« no previous file with comments | « pkg/barback/README.md ('k') | tools/publish_barback.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698