diff options
Diffstat (limited to 'bb.edn')
| -rw-r--r-- | bb.edn | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,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)))}}} |
