-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
47 lines (38 loc) · 1.52 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
(defproject precept-todomvc "0.0.0"
:url "https://github.com/CoNarrative/precept.git"
:license {:name "MIT"
:url "https://github.com/CoNarrative/precept/blob/master/LICENSE"}
:dependencies [[org.clojure/clojure "1.9.0-alpha15"]
[org.clojure/clojurescript "1.9.494"]
[precept "0.3.0-alpha"]
[reagent "0.6.0"]
[secretary "1.2.3"]]
:plugins [[lein-cljsbuild "1.1.4"]]
:source-paths ["src/cljs" "dev/cljs"]
:resource-paths ["resources" "target/cljsbuild"]
:figwheel
{:http-server-root "public"
:nrepl-port 7002
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:profiles
{:dev
{:dependencies [[com.cemerick/piggieback "0.2.2-SNAPSHOT"]
[figwheel-sidecar "0.5.10-SNAPSHOT"]
[binaryage/devtools "0.8.2"]]
:plugins [[lein-figwheel "0.5.10-SNAPSHOT"]]
:repl-options {:init-ns user}
:source-paths ["dev/clj"]
:cljsbuild
{:builds
{:app
{:source-paths ["src/cljs" "dev/cljs"]
:compiler
{:main "precept.todomvc.app"
:asset-path "/js/out"
:output-to "target/cljsbuild/public/js/app.js"
:output-dir "target/cljsbuild/public/js/out"
:preloads [devtools.preload]
:source-map true
:optimizations :none
:cache-analysis false
:pretty-print true}}}}}})