blob: 24116426d06d5ec2d6b6e7af6d3839ea1782678e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{:pods {org.babashka/fswatcher {:version "0.0.7"}}
:tasks
{build
{:doc "Builds the nesfab project"
:task (shell "../nesfab/nesfab nEs.cfg")}
watch
{:doc "Automatically build the nesfab project on file writes"
:requires ([pod.babashka.fswatcher :as fw])
:task (do (fw/watch "main.fab"
(fn [event]
(prn event)
(shell "../nesfab/nesfab nEs.cfg")))
(deref (promise)))}}}
|