Skip to content

Commit 77df785

Browse files
committed
chore(core): include continuous task bool in console message updates
1 parent 747dcc6 commit 77df785

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/nx/src/native/tui/nx_console/messaging.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ pub struct UpdatedRunningTask {
2525
pub name: String,
2626
pub status: TaskStatus,
2727
pub output: String,
28+
pub continuous: bool,
2829
}
2930

3031
#[rpc(client, namespace = "nx", namespace_separator = "/")]
@@ -121,6 +122,7 @@ impl NxConsoleMessageConnection {
121122
name: task.name.clone(),
122123
status: task.status,
123124
output,
125+
continuous: task.continuous,
124126
}
125127
})
126128
.collect();

0 commit comments

Comments
 (0)