io 0.3.0 io: ^0.3.0 copied to clipboard
Utilities for the Dart VM Runtime.
0.3.0 #
- BREAKING CHANGE: The
arguments
argument toProcessManager.spawn
is now positional (not named) and required. This makes it more similar to the built-inProcess.start
, and easier to use as a drop in replacement:
processManager.spawn('dart', ['--version']);
-
Fixed a bug where processes created from
ProcessManager.spawn
could not have theirstdout
/stderr
read through their respective getters (a runtime error was always thrown). -
Added
ProcessMangaer#spawnBackground
, which does not forwardstdin
. -
Added
ProcessManager#spawnDetached
, which does not forward any I/O. -
Added the
shellSplit()
function, which parses a list of arguments in the same manner as the POSIX shell.
0.2.0 #
- Initial commit of...
FutureOr<bool> String isExecutable(path)
.ExitCode
ProcessManager
andSpawn
sharedStdIn
andSharedStdIn
ansi.dart
library with support for formatting terminal output