Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/thirty-eagles-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect/platform": patch
---

Remove error case from `Command.isRunning` type signature
2 changes: 1 addition & 1 deletion packages/platform/src/CommandExecutor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export interface Process extends Inspectable {
/**
* Returns `true` if the process is still running, otherwise returns `false`.
*/
readonly isRunning: Effect<boolean, PlatformError>
readonly isRunning: Effect<boolean>
/**
* Kills the running process with the provided signal.
*
Expand Down