| OLD | NEW |
| 1 name: barback | 1 name: barback |
| 2 version: 0.9.0 | 2 version: 0.9.0 # Replaced by publish_barback.py. Do not edit. |
| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 23 environment: | 23 environment: |
| 24 # Barback is tightly coupled to the SDK because pub contains code that is run | 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 | 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. | 26 # of barback is compatible with the user's version of pub. |
| 27 # | 27 # |
| 28 # Since the SDK itself can't place constraints on barback, we do a reverse | 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. | 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 | 30 # This ensures that for each SDK version, there is a single known good version |
| 31 # of barback that will be used with it. | 31 # of barback that will be used with it. |
| 32 sdk: "$SDK_CONSTRAINT$" | 32 sdk: "$SDK_CONSTRAINT$" |
| OLD | NEW |