mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
12 lines
314 B
Clojure
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})
|