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

53 lines
1.6 KiB
Clojure
Raw Normal View History

2015-06-18 12:35:50 -05:00
(require '[figwheel-sidecar.repl :as r]
'[figwheel-sidecar.repl-api :as ra])
2015-06-18 12:35:50 -05:00
(ra/start-figwheel!
2016-05-10 16:41:39 -05:00
{:figwheel-options {:css-dirs ["resources/public/css"]
:server-port 3449
:server-ip "0.0.0.0"}
:build-ids ["main", "preview"]
2015-06-18 12:35:50 -05:00
:all-builds
[{:id "main"
:figwheel {:on-jsload "uxbox.ui/init"}
2016-04-07 14:51:40 -05:00
:source-paths ["src" "vendor"]
:compiler
{:main 'uxbox.main
:asset-path "js"
:parallel-build false
:optimizations :none
;; :closure-defines {"uxbox.repo.core.url"
;; "https://test.uxbox.io/api"}
:closure-defines {"uxbox.repo.core.url"
"http://localhost:6060/api"}
:warnings {:ns-var-clash false}
:pretty-print true
:language-in :ecmascript6
:language-out :ecmascript5
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js"
:verbose true}}
#_{:id "preview"
;; :figwheel {:on-jsload "uxbox.ui/init"}
:source-paths ["src" "vendor"]
:compiler
{:main 'uxbox.core
:asset-path "js"
:parallel-build false
:optimizations :none
;; :closure-defines {"uxbox.repo.core.url"
;; "https://test.uxbox.io/api"}
:closure-defines {"uxbox.repo.core.url"
"http://localhost:6060/api"}
:warnings {:ns-var-clash false}
:pretty-print true
:language-in :ecmascript6
:language-out :ecmascript5
:output-to "resources/public/preview/js/main.js"
:output-dir "resources/public/preview/js"
:verbose true}}
]})
2015-06-18 12:35:50 -05:00
(ra/cljs-repl "main")