2015-06-18 12:35:50 -05:00
|
|
|
(require '[figwheel-sidecar.repl :as r]
|
2016-01-07 18:43:59 -05:00
|
|
|
'[figwheel-sidecar.repl-api :as ra]
|
|
|
|
'[cljs.tagged-literals])
|
|
|
|
|
|
|
|
(alter-var-root #'cljs.tagged-literals/*cljs-data-readers*
|
|
|
|
assoc 'ux/tr (fn [v] `(uxbox.locales/tr ~v)))
|
2015-06-18 12:35:50 -05:00
|
|
|
|
|
|
|
(ra/start-figwheel!
|
|
|
|
{:figwheel-options {:css-dirs ["resources/public/css"]}
|
2016-04-11 09:31:14 -05:00
|
|
|
:build-ids ["dev"]
|
2015-06-18 12:35:50 -05:00
|
|
|
:all-builds
|
|
|
|
[{:id "dev"
|
2016-01-17 16:28:10 -05:00
|
|
|
:figwheel {:on-jsload "uxbox.ui/init"}
|
2016-04-07 14:51:40 -05:00
|
|
|
:source-paths ["src" "vendor"]
|
2016-04-11 09:31:14 -05:00
|
|
|
:compiler
|
|
|
|
{:main 'uxbox.core
|
|
|
|
:asset-path "js"
|
|
|
|
:parallel-build false
|
|
|
|
:optimizations :none
|
|
|
|
:closure-defines {"uxbox.repo.core.url"
|
|
|
|
"https://test.uxbox.io/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}}]})
|
2015-06-18 12:35:50 -05:00
|
|
|
|
2016-04-10 10:44:12 -05:00
|
|
|
(ra/cljs-repl "dev")
|