-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
39 lines (33 loc) · 1.86 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
(defproject navis/untangled-websockets "0.3.3"
:description "Tools for making untangled leverage websockets."
:url ""
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[com.taoensso/timbre "4.7.3"]
[navis/untangled-client "0.5.0" :exclusions [cljsjs/react org.omcljs/om] :scope "provided"]
[navis/untangled-server "0.5.1" :scope "provided"]
[navis/untangled-spec "0.3.6" :scope "test"]
[org.omcljs/om "1.0.0-alpha36" :scope "provided"]
[com.taoensso/sente "1.10.0"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.14.0"]
[lein-cljsbuild "1.1.3"]]
:test-refresh {:report untangled-spec.reporters.terminal/untangled-report
:with-repl true
:changes-only true}
:source-paths ["src"]
:resource-paths ["resources"]
:clean-targets ^{:protect false} ["resources/public/js" "target"]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src"]
:figwheel true
:compiler {:main cljs.user
:asset-path "js/compiled/dev"
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/dev"
:optimizations :none
:parallel-build false
:verbose false
:recompile-dependents true
:source-map-timestamp true}}]})