| Index: pkg/barback/lib/src/graph/phase.dart
|
| diff --git a/pkg/barback/lib/src/graph/phase.dart b/pkg/barback/lib/src/graph/phase.dart
|
| index 6043125cf99c0c26f1d3637a4f5a6f305e1561c0..a4724ab20e22f0ef3c0c2f4aff84f96842fc272a 100644
|
| --- a/pkg/barback/lib/src/graph/phase.dart
|
| +++ b/pkg/barback/lib/src/graph/phase.dart
|
| @@ -87,7 +87,7 @@ class Phase {
|
| NodeStatus get status {
|
| // Before any transformers are added, the phase should be dirty if and only
|
| // if any input is dirty.
|
| - if (_classifiers.isEmpty && _groups.isEmpty) {
|
| + if (_classifiers.isEmpty && _groups.isEmpty && previous == null) {
|
| return _inputs.any((input) => input.state.isDirty) ?
|
| NodeStatus.RUNNING : NodeStatus.IDLE;
|
| }
|
|
|