add live.sh to style 49
This commit is contained in:
parent
628efd7630
commit
0e1bb8a3a6
|
@ -1 +1 @@
|
||||||
main.js
|
main-*.js
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
cd "$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"
|
||||||
|
set -eo pipefail
|
||||||
|
|
||||||
|
git ls-files | entr -p ./example.sh
|
|
@ -3,14 +3,16 @@
|
||||||
cd "$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"
|
cd "$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"
|
||||||
set -eo pipefail
|
set -eo pipefail
|
||||||
|
|
||||||
if test "main.js" -ot "main.nim" \
|
VERSION="${1-release}"
|
||||||
|| test "main.js" -ot "main.nimle" \
|
|
||||||
|| test "main.js" -ot "main.nimja"
|
if test "main-$VERSION.js" -ot "main.nim" \
|
||||||
|
|| test "main-$VERSION.js" -ot "main.nimle" \
|
||||||
|
|| test "main-$VERSION.js" -ot "main.nimja"
|
||||||
then
|
then
|
||||||
>&2 nimble js main -d:${1-release}
|
>&2 nimble js main -o:main-"$VERSION".js -d:"$VERSION"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
j2 -f json style.html.j2 <({
|
j2 -f json style.html.j2 <({
|
||||||
echo "card_js = $(cat main.js | jq -s --raw-input);"
|
echo "card_js = $(cat main-"$VERSION".js | jq -s --raw-input);"
|
||||||
echo "card_css_style = $(sass --style expanded style.scss | jq -s --raw-input);"
|
echo "card_css_style = $(sass --style expanded style.scss | jq -s --raw-input);"
|
||||||
} | gron -u) --filters ../../filters.py --customize ../../environ.py
|
} | gron -u) --filters ../../filters.py --customize ../../environ.py
|
||||||
|
|
Loading…
Reference in New Issue