-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
25 lines (18 loc) · 966 Bytes
/
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
(defproject arete "0.1.0-SNAPSHOT"
:description "Determine how strong you are?"
:url "http://arete.rugu.dev"
:min-lein-version "2.7.1"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.11.4"]
[cljsjs/react "17.0.2-0"]
[cljsjs/react-dom "17.0.2-0"]
[reagent "1.1.1" ]]
:source-paths ["src"]
:aliases {"fig:dev" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
"fig:build" ["run" "-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]}
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.2.17"]
[org.slf4j/slf4j-nop "1.7.30"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]
:resource-paths ["target"]
;; need to add the compiled assets to the :clean-targets
:clean-targets ^{:protect false} ["target"]}})