majorjam-4/justfile

27 lines
594 B
Plaintext
Raw Permalink Normal View History

2021-08-09 11:28:04 +02:00
TIC := "tic80 --skip --fs ."
CART := "chi-tor.wren"
2021-08-09 11:28:04 +02:00
run:
{{TIC}} {{CART}}
export-tic:
2021-08-09 11:28:04 +02:00
mkdir --parents build
2021-08-18 13:53:05 +02:00
{{TIC}} --cmd "load {{CART}} & save build/chi-tor.tic & exit"
export-html:
mkdir --parents build
{{TIC}} --cmd "load {{CART}} & export html {{CART}} & exit"
mv {{CART}}.zip build
export-png:
mkdir --parents build
{{TIC}} --cmd "load {{CART}} & save build/chi-tor.png {{CART}} & exit"
2021-08-18 13:53:05 +02:00
export: export-html export-png export-tic
deploy-html: export-html
butler push build/{{CART}}.zip damantisshrimp/chi-tor:html
2021-08-12 15:05:10 +02:00
webpage:
xdg-open "https://damantisshrimp.itch.io/chi-tor"