-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
52 lines (46 loc) · 2.7 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(defproject synfnetic/flux "0.1.0-SNAPSHOT"
:description "Flux up your om next mutations!"
:url "https://github.com/synfnetic/flux"
:license {:name "MIT Public License"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[org.omcljs/om "1.0.0-alpha32" :scope "provided"
:exclusions [commons-codec]]
[navis/untangled-spec "0.3.6" :scope "test"]
[lein-doo "0.1.6" :scope "test"]
[com.datomic/datomic-free "0.9.5359" :scope "provided"
:exclusions [org.clojure/tools.cli com.google.guava/guava]]
[navis/untangled-datomic "0.4.10" :scope "test"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.15.0"]
[lein-doo "0.1.6"]]
:test-refresh {:report untangled-spec.reporters.terminal/untangled-report
:with-repl true
:changes-only true}
:doo {:build "automated-tests"
:paths {:karma "node_modules/karma/bin/karma"}}
:source-paths ["src"]
:test-paths ["specs"]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "resources/public/js/specs"
"resources/private/js" "target"]
:cljsbuild {:builds [{:id "test"
:source-paths ["specs" "src"]
:figwheel true
:compiler {:main flux.spec-main
:output-to "resources/public/js/specs/specs.js"
:output-dir "resources/public/js/compiled/specs"
:asset-path "js/compiled/specs"
:optimizations :none}}
{:id "automated-tests"
:source-paths ["specs" "src"]
:compiler {:output-to "resources/private/js/unit-tests.js"
:main flux.all-tests
:output-dir "resources/private/js/out"
:asset-path "js/out"
:optimizations :none}}]}
:profiles {:dev {:source-paths ["dev" "src"]
:dependencies [[binaryage/devtools "0.6.1"]
[com.cemerick/piggieback "0.2.1"]
[figwheel-sidecar "0.5.3-2" :exclusions [commons-codec joda-time clj-time]]
[org.clojure/tools.nrepl "0.2.12"]]
:repl-options {:init-ns user
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}})