Merge remote-tracking branch 'pietro/cljs-build-support' into cljs
This commit is contained in:
commit
f6d23c777d
3 changed files with 10 additions and 2 deletions
12
project.clj
12
project.clj
|
|
@ -4,8 +4,16 @@
|
||||||
:dependencies [[org.clojure/clojure "1.7.0-RC2"]
|
:dependencies [[org.clojure/clojure "1.7.0-RC2"]
|
||||||
]
|
]
|
||||||
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
|
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
|
||||||
|
:plugins [[lein-cljsbuild "1.0.6"]]
|
||||||
:source-paths ["src"]
|
:source-paths ["src"]
|
||||||
:test-paths ["test/clj"]
|
:test-paths ["test"]
|
||||||
:profiles {:dev {:dependencies
|
:profiles {:dev {:dependencies
|
||||||
[[org.clojure/test.check "0.5.9"]]}
|
[[org.clojure/test.check "0.5.9"]]}
|
||||||
})
|
}
|
||||||
|
:cljsbuild {
|
||||||
|
:builds [{
|
||||||
|
:source-paths ["src"]
|
||||||
|
:test-paths ["test"]
|
||||||
|
:compiler {
|
||||||
|
:output-to "target/cljsbuild-main.js"}}]
|
||||||
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue