mirror of https://github.com/status-im/reagent.git
Update ClojureScript to 1.7.145
This commit is contained in:
parent
c0bf6c488b
commit
4d00b44c7c
12
project.clj
12
project.clj
|
@ -4,7 +4,7 @@
|
||||||
:description "A simple ClojureScript interface to React"
|
:description "A simple ClojureScript interface to React"
|
||||||
|
|
||||||
:dependencies [[org.clojure/clojure "1.7.0"]
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
||||||
[org.clojure/clojurescript "1.7.48"]
|
[org.clojure/clojurescript "1.7.145"]
|
||||||
[cljsjs/react-dom "0.14.0-0"]]
|
[cljsjs/react-dom "0.14.0-0"]]
|
||||||
|
|
||||||
:plugins [[lein-cljsbuild "1.1.0"]
|
:plugins [[lein-cljsbuild "1.1.0"]
|
||||||
|
@ -16,7 +16,9 @@
|
||||||
:exclude clojure.string}
|
:exclude clojure.string}
|
||||||
|
|
||||||
:profiles {:test {:cljsbuild
|
:profiles {:test {:cljsbuild
|
||||||
{:builds {:client {:source-paths ["test"]}}}}
|
{:builds {:client {:source-paths ["test"]
|
||||||
|
:compiler
|
||||||
|
{:main "reagenttest.runtests"}}}}}
|
||||||
|
|
||||||
:dev [:test
|
:dev [:test
|
||||||
{:dependencies [[figwheel "0.4.0"]]
|
{:dependencies [[figwheel "0.4.0"]]
|
||||||
|
@ -28,8 +30,7 @@
|
||||||
{:builds
|
{:builds
|
||||||
{:client
|
{:client
|
||||||
{:figwheel {:on-jsload "reagenttest.runtests/reload"}
|
{:figwheel {:on-jsload "reagenttest.runtests/reload"}
|
||||||
:compiler {:main "reagenttest.runtests"
|
:compiler {:source-map true
|
||||||
:source-map true
|
|
||||||
:source-map-timestamp true
|
:source-map-timestamp true
|
||||||
:optimizations :none
|
:optimizations :none
|
||||||
:output-dir "outsite/public/js/out"
|
:output-dir "outsite/public/js/out"
|
||||||
|
@ -47,6 +48,7 @@
|
||||||
{:compiler {:optimizations :advanced
|
{:compiler {:optimizations :advanced
|
||||||
:elide-asserts true
|
:elide-asserts true
|
||||||
:pretty-print false
|
:pretty-print false
|
||||||
|
:main "reagentdemo.core"
|
||||||
;; :pseudo-names true
|
;; :pseudo-names true
|
||||||
:output-dir "target/client"}}}}}]
|
:output-dir "target/client"}}}}}]
|
||||||
|
|
||||||
|
@ -59,7 +61,7 @@
|
||||||
:provides ["cljsjs.react.dom"
|
:provides ["cljsjs.react.dom"
|
||||||
"cljsjs.react"]}]}}}}}
|
"cljsjs.react"]}]}}}}}
|
||||||
|
|
||||||
:prod-test [:test :prod]
|
:prod-test [:prod :test]
|
||||||
|
|
||||||
:dev-notest [:dev
|
:dev-notest [:dev
|
||||||
{:cljsbuild
|
{:cljsbuild
|
||||||
|
|
|
@ -554,7 +554,10 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(comment
|
#_(do
|
||||||
|
;; Workaround for cljs bug
|
||||||
|
(when (exists? js/process)
|
||||||
|
(set! (.-hrtime js/process) (aget js/process "hrtime")))
|
||||||
(defn ratom-perf []
|
(defn ratom-perf []
|
||||||
(dbg "ratom-perf")
|
(dbg "ratom-perf")
|
||||||
(set! debug false)
|
(set! debug false)
|
||||||
|
|
Loading…
Reference in New Issue