Description
This issue was originally filed by @kaendfinger
What steps will reproduce the problem?
- Create a new package that uses 2 transformers
- Run transformers
- Notice that transformers run in parallel
What is the expected output? What do you see instead?
with the given transformer definitions:
transformers:
- transformer_one
- transformer_two
this should run the first transformer and then the second one.
What version of the product are you using?
Dart VM version: 1.11.0-edge.45391 (Thu Apr 23 17:40:55 2015) on "macos_x64"
On what operating system?
Mac OS X
What browser (if applicable)?
N/A
Please provide any additional information below.
According to https://www.dartlang.org/tools/pub/assets-and-transformers.html
To specify that transformers run in parallel, use [transformer_1, ..., transformer_n]. If order matters, put the transformers on separate lines.
For example, consider three transformers, specified as follows:
transformers:
- [t1, t2]
- t3