Skip to content

Instantly share code, notes, and snippets.

@r-k-b
Last active May 27, 2023 00:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-k-b/24f0a1f80a1ea64d7a0390e47c0224e7 to your computer and use it in GitHub Desktop.
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`.
[
{
"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