| OLD | NEW |
| 1 name: barback | 1 name: barback |
| 2 | 2 |
| 3 # Note! This version number is referenced directly in the pub source code in | 3 # Note! This version number is referenced directly in the pub source code in |
| 4 # lib/src/barback.dart. Pub implicitly places a version constraint on barback to | 4 # lib/src/barback.dart. Pub implicitly places a version constraint on barback to |
| 5 # ensure users only select a version of barback that works with their current | 5 # ensure users only select a version of barback that works with their current |
| 6 # version of pub. | 6 # version of pub. |
| 7 # | 7 # |
| 8 # When the minor or patch version of this is upgraded, you *must* update that | 8 # When the minor or patch version of this is upgraded, you *must* update that |
| 9 # version constraint in pub to stay in sync with this. | 9 # version constraint in pub to stay in sync with this. |
| 10 # |
| 11 # Additional note: a stable version of pub was erroneously released with a |
| 12 # constraint on barback that includes 0.15.1 before version 0.15.1 was actually |
| 13 # released. As such, next time the patch version is bumped it should skip 0.15.1 |
| 14 # and go directly to 0.15.2. |
| 10 version: 0.15.0+1 | 15 version: 0.15.0+1 |
| 11 | 16 |
| 12 author: "Dart Team <misc@dartlang.org>" | 17 author: "Dart Team <misc@dartlang.org>" |
| 13 homepage: http://www.dartlang.org | 18 homepage: http://www.dartlang.org |
| 14 description: > | 19 description: > |
| 15 An asset build system. | 20 An asset build system. |
| 16 | 21 |
| 17 Given a set of input files and a set of transformations (think compilers, | 22 Given a set of input files and a set of transformations (think compilers, |
| 18 preprocessors and the like), will automatically apply the appropriate | 23 preprocessors and the like), will automatically apply the appropriate |
| 19 transforms and generate output files. When inputs are modified, automatically | 24 transforms and generate output files. When inputs are modified, automatically |
| 20 runs the transforms that are affected. | 25 runs the transforms that are affected. |
| 21 | 26 |
| 22 Runs transforms asynchronously and in parallel when possible to maximize | 27 Runs transforms asynchronously and in parallel when possible to maximize |
| 23 responsiveness. | 28 responsiveness. |
| 24 dependencies: | 29 dependencies: |
| 25 path: ">=0.9.0 <2.0.0" | 30 path: ">=0.9.0 <2.0.0" |
| 26 pool: ">=1.0.0 <2.0.0" | 31 pool: ">=1.0.0 <2.0.0" |
| 27 source_span: ">=1.0.0 <2.0.0" | 32 source_span: ">=1.0.0 <2.0.0" |
| 28 stack_trace: ">=0.9.1 <2.0.0" | 33 stack_trace: ">=0.9.1 <2.0.0" |
| 29 collection: ">=0.9.1 <2.0.0" | 34 collection: ">=0.9.1 <2.0.0" |
| 30 dev_dependencies: | 35 dev_dependencies: |
| 31 scheduled_test: ">=0.9.0 <0.11.0" | 36 scheduled_test: ">=0.9.0 <0.11.0" |
| 32 unittest: ">=0.9.0 <0.10.0" | 37 unittest: ">=0.9.0 <0.10.0" |
| 33 environment: | 38 environment: |
| 34 sdk: ">=1.0.1 <2.0.0" | 39 sdk: ">=1.0.1 <2.0.0" |
| OLD | NEW |