refactor: move some setup to elm-project-utils crate

This commit is contained in:
YetAnotherMinion 2022-01-11 18:15:16 +00:00 committed by nobody
commit d7981129eb
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
6 changed files with 791 additions and 821 deletions

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2018"
# I decided to use os_pipe becaues I want to pipe stdout of a subprocess into
# stderr in real time. I want the outupt of the process to stderr and stdout
# stderr in real time. I want the output of the process to stderr and stdout
# show up in the original order. I looked an os_pipe uses some unsafe code to
# duplicate file descriptors. I am unfamiliar with the correct way of sharing
# the fds. Therefore I am going to trust that their unsafe code is necessary.