-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
23 lines (20 loc) · 812 Bytes
/
project.clj
File metadata and controls
23 lines (20 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject purr "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[instaparse "1.4.9"]
[org.clojure/clojurescript "1.10.339"]
[rum "0.11.2"]
[com.bhauman/figwheel-main "0.1.9"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:cljsbuild
{:builds
[{:source-paths ["src"]
:optimizations :advanced}]}
:resource-paths ["target" "resources"]
:aliases
{"fig" ["trampoline" "run" "-m" "figwheel.main"]
"build-dev" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]})