mirror of
https://github.com/penpot/penpot.git
synced 2025-08-03 19:18:31 +02:00
Initial commit
This commit is contained in:
commit
2a32f1fcf6
181 changed files with 24339 additions and 0 deletions
16
scripts/build.clj
Normal file
16
scripts/build.clj
Normal file
|
@ -0,0 +1,16 @@
|
|||
(require '[cljs.build.api :as b])
|
||||
|
||||
(println "Building ...")
|
||||
|
||||
(let [start (System/nanoTime)]
|
||||
(b/build
|
||||
(b/inputs "frontend")
|
||||
{:main 'uxbox.core
|
||||
:output-to "resources/public/js/main.js"
|
||||
:output-dir "resources/public/js"
|
||||
:optimizations :advanced
|
||||
:language-in :ecmascript5
|
||||
:language-out :ecmascript5
|
||||
:asset-path "/js"
|
||||
:verbose true})
|
||||
(println "... done. Elapsed" (/ (- (System/nanoTime) start) 1e9) "seconds"))
|
Loading…
Add table
Add a link
Reference in a new issue