OLD | NEW |
1 name: barback | 1 name: barback |
2 version: 0.9.0 # Replaced by publish_barback.py. Do not edit. | 2 |
| 3 # Note! This version is referenced directly in the pub source code in |
| 4 # lib/src/barback.dart. Pub implicitly places a version constraint on barback |
| 5 # to ensure users only select a version of barback that works with their current |
| 6 # version of pub. |
| 7 # |
| 8 # When the minor version of this is upgraded, you *must* update that version |
| 9 # number in pub to stay in sync with this. New patch versions are considered |
| 10 # backwards compatible, and pub will allow later patch versions automatically. |
| 11 version: 0.10.2+1 |
| 12 |
3 author: "Dart Team <misc@dartlang.org>" | 13 author: "Dart Team <misc@dartlang.org>" |
4 homepage: http://www.dartlang.org | 14 homepage: http://www.dartlang.org |
5 description: > | 15 description: > |
6 An asset build system. | 16 An asset build system. |
7 | 17 |
8 Given a set of input files and a set of transformations (think compilers, | 18 Given a set of input files and a set of transformations (think compilers, |
9 preprocessors and the like), will automatically apply the appropriate | 19 preprocessors and the like), will automatically apply the appropriate |
10 transforms and generate output files. When inputs are modified, automatically | 20 transforms and generate output files. When inputs are modified, automatically |
11 runs the transforms that are affected. | 21 runs the transforms that are affected. |
12 | 22 |
13 Runs transforms asynchronously and in parallel when possible to maximize | 23 Runs transforms asynchronously and in parallel when possible to maximize |
14 responsiveness. | 24 responsiveness. |
15 dependencies: | 25 dependencies: |
16 path: ">=0.9.0 <0.10.0" | 26 path: ">=0.9.0 <0.10.0" |
17 source_maps: ">=0.9.0 <0.10.0" | 27 source_maps: ">=0.9.0 <0.10.0" |
18 stack_trace: ">=0.9.0 <0.10.0" | 28 stack_trace: ">=0.9.0 <0.10.0" |
19 dev_dependencies: | 29 dev_dependencies: |
20 scheduled_test: ">=0.9.0 <0.10.0" | 30 scheduled_test: ">=0.9.0 <0.10.0" |
21 unittest: ">=0.9.0 <0.10.0" | 31 unittest: ">=0.9.0 <0.10.0" |
22 | |
23 environment: | 32 environment: |
24 # Barback is tightly coupled to the SDK because pub contains code that is run | 33 sdk: ">=1.0.1 <2.0.0" |
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$" | |
OLD | NEW |