I’d like it to be able to run elm-review --watch (in addition to everything else). I want to provide feedback in the run-pty dashboard. Does anyone have a run-pty.json config for elm-review with the status indicators setup in a way they like?
This is what I have so far and it’s fine but I’d really like to be able to show a status when elm-review is “thinking”
{
"command": [
"npx",
"elm-review",
"--watch"
],
"title": "Elm review in watch mode",
"status": {
"ELM-REVIEW ERROR": ["🚨", "E"],
"I found no errors!": ["✅", "+"]
}
We used to run elm-review in watch mode in run-pty at work, but we removed it since it used too much RAM and the watcher stopped working after a while. Anyway, here’s the config we used: