Boot task that reports build status to AnyBar
Add boot-anybar
to your build.boot
dependencies and require
the namespace:
(set-env! :dependencies '[
[tonsky/boot-anybar "0.1.0" :scope "test"]
])
(require
'[tonsky.boot-anybar :refer [anybar]])
Use (anybar)
wherever you would use (speak)
or (notify)
.
To change AnyBar port, use -p
:
boot anybar -p 1788 cljs
or in the build.boot
:
(deftask build []
(comp (anybar :port 1788)
(cljs)))
Copyright © 2015 Nikita Prokopov
Licensed under Eclipse Public License (see LICENSE).