The build command splits arguments by space: https://github.com/nwolverson/purescript-language-server/blob/1ae432e86573d51dc384e4f38c4e7b1d7caff337/src/LanguageServer/IdePurescript/Build.purs#L101 But this is problematic with `spago`s `--purs-args` flag: ``` spago build --purs-args="--stash --censor-lib --json-errors" ``` Since it will chunk these arguments as ``` [ "build", "--purs-args=\"--stash", "--censor-lib", "--json-errors\"" ] ```