| OLD | NEW |
| 1 name: simple_transformer | 1 name: simple_transformer |
| 2 description: This hello world example implements a simple | 2 description: This hello world example implements a simple |
| 3 transformer that inserts a copyright string into | 3 transformer that inserts a copyright string into |
| 4 an input asset - a file that ends with ".txt". | 4 an input asset - a file that ends with ".txt". |
| 5 |
| 5 dependencies: | 6 dependencies: |
| 6 barback: any | 7 barback: ">=0.14.1 <0.16.0" |
| 8 |
| 9 # Override the barback dependency so this example always uses the version |
| 10 # of barback it's bundled with. |
| 11 dependency_overrides: |
| 12 barback: {path: ../..} |
| 7 | 13 |
| 8 transformers: | 14 transformers: |
| 9 - simple_transformer | 15 - simple_transformer |
| OLD | NEW |