0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 16:00:19 -05:00
penpot/scripts/watch.clj
2015-12-30 00:18:59 +02:00

12 lines
314 B
Clojure

(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})