0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 08:50:57 -05:00
penpot/scripts/watch.clj

13 lines
314 B
Clojure
Raw Normal View History

2015-06-18 12:35:50 -05:00
(require '[cljs.build.api :as b])
(b/watch (b/inputs "frontend")
{:main 'uxbox.core
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js"
:asset-path "/js"
:optimizations :none
:pretty-print true
:language-in :ecmascript5
:language-out :ecmascript5
:verbose true})