Last active
May 27, 2023 00:58
-
-
Save r-k-b/24f0a1f80a1ea64d7a0390e47c0224e7 to your computer and use it in GitHub Desktop.
Spin up helpful dev tools for the Hippo project with `run-pty`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title": "elm-review", | |
"command": [ | |
"elm-review", | |
"--watch" | |
], | |
"defaultStatus": [ | |
"⏳", | |
"S" | |
], | |
"status": { | |
"Running": [ | |
"⏳", | |
"S" | |
], | |
"ERROR": [ | |
"🚨", | |
"E" | |
], | |
"I found no(?: more)? errors!": [ | |
"️✅", | |
"0" | |
], | |
"apply this fix": [ | |
"🧰️", | |
"F" | |
] | |
} | |
}, | |
{ | |
"title": "elm-test", | |
"command": [ | |
"elm-test", | |
"--watch" | |
], | |
"defaultStatus": [ | |
"⏳", | |
"S" | |
], | |
"status": { | |
"Compiling": [ | |
"\uD83D\uDEE0\uFE0F", | |
"." | |
], | |
"Starting tests": [ | |
"\uD83E\uDD14", | |
"." | |
], | |
"TEST RUN PASSED": [ | |
"️✅", | |
"0" | |
], | |
"TEST RUN INCOMPLETE": [ | |
"️\uD83D\uDEA7", | |
"0" | |
], | |
"TEST RUN FAILED": [ | |
"❌", | |
"F" | |
], | |
"ERROR": [ | |
"🚨", | |
"E" | |
], | |
"failed with exit code": [ | |
"🚨", | |
"E" | |
] | |
} | |
}, | |
{ | |
"title": "entr make tcm", | |
"command": [ | |
"/home/rkb/helpers/tcm_entr.sh" | |
], | |
"defaultStatus": [ | |
"⏳", | |
"S" | |
], | |
"status": { | |
"Watching \"": [ | |
"️✅", | |
"0" | |
], | |
"Compiling": [ | |
"⏳", | |
"S" | |
], | |
"Success!": [ | |
"️✅", | |
"0" | |
], | |
"Detected problems": [ | |
"🚨", | |
"E" | |
] | |
} | |
}, | |
{ | |
"title": "watch:style", | |
"command": [ | |
"npm", | |
"run", | |
"watch:style" | |
], | |
"defaultStatus": [ | |
"⏳", | |
"S" | |
], | |
"status": { | |
"Watching \"": [ | |
"️✅", | |
"0" | |
], | |
"Finished 'compileCss'": [ | |
"️✅", | |
"0" | |
], | |
"Starting 'compileCss'": [ | |
"⏳", | |
"S" | |
] | |
} | |
}, | |
{ | |
"title": "multilive", | |
"command": [ | |
"multilive.sh" | |
], | |
"defaultStatus": [ | |
"⏳", | |
"S" | |
], | |
"status": { | |
"The build has succeeded": [ | |
"️✅", | |
"0" | |
], | |
"Rebuilding": [ | |
"⏳", | |
"S" | |
], | |
"exited with code": [ | |
"🚨", | |
"E" | |
] | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment