| OLD | NEW |
| 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$" |
| OLD | NEW |