-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
31 lines (24 loc) · 1.26 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
(defproject fae "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.7.1"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.773"]
[re-frame "0.10.5"]
[reagent "0.8.0"]
[cljsjs/pixi "5.3.6-0"]
[cljsjs/pixi-sound "1.4.1-0"]
[cljsjs/rot "0.6.0-0"]]
:source-paths ["src"]
:aliases {"fig" ["trampoline" "run" "-m" "figwheel.main"]
"fig:build" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
"fig:min" ["run" "-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]
"fig:test" ["run" "-m" "figwheel.main" "-co" "test.cljs.edn" "-m" "faetest-runner"]}
:profiles {:dev {:source-paths ["src" "env/dev/cljs"]
:dependencies [[com.bhauman/figwheel-main "0.2.12"]
[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"]}})