| OLD | NEW |
| 1 ## 0.15.2+6 |
| 2 |
| 3 * Fix a deadlock that occurred occasionally when a declaring transformer was |
| 4 followed by a lazy transformer (most commonly `$dart2js`). |
| 5 |
| 1 ## 0.15.2+5 | 6 ## 0.15.2+5 |
| 2 | 7 |
| 3 * If a transformer requests a non-existent asset from another package, it will | 8 * If a transformer requests a non-existent asset from another package, it will |
| 4 now be re-run if that asset is later created. | 9 now be re-run if that asset is later created. |
| 5 | 10 |
| 6 ## 0.15.2+4 | 11 ## 0.15.2+4 |
| 7 | 12 |
| 8 * Fix an incorrect example. | 13 * Fix an incorrect example. |
| 9 | 14 |
| 10 ## 0.15.2+3 | 15 ## 0.15.2+3 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 150 |
| 146 * If a transformer calls `Transform.logger.error`, the transformer will now be | 151 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 147 considered to have failed after it finishes running `apply()`. This means that | 152 considered to have failed after it finishes running `apply()`. This means that |
| 148 its outputs will not be consumed by future transformers and its primary input | 153 its outputs will not be consumed by future transformers and its primary input |
| 149 will not be passed through to the next phase. | 154 will not be passed through to the next phase. |
| 150 | 155 |
| 151 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 156 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 152 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 157 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 153 doesn't exist, the transform will be re-run if that input is created in the | 158 doesn't exist, the transform will be re-run if that input is created in the |
| 154 future. | 159 future. |
| OLD | NEW |