Add watch-lint.sh and watch-tsc.sh

Both these scripts will live reload run yarn lint and tsc,
reporting errors with notify-send.
This commit is contained in:
Brandon Presley 2022-09-20 13:51:34 +12:00
parent ceda1cecf4
commit 565df842c9
2 changed files with 18 additions and 0 deletions

9
watch-lint.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
ls *.ts* | entr yarn lint | tee >(
while read ln; do
if echo "${ln}" | grep -q "error"; then
notify-send "${ln}"
fi
done
)

9
watch-tsc.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
yarn tsc --watch --preserveWatchOutput | tee >(
while read ln; do
if echo "${ln}" | grep -q "Found [^0][0-9]* error"; then
notify-send "${ln}"
fi
done
)