-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
project.clj
25 lines (19 loc) · 1.18 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
(defproject com.bhauman/cljs-test-display "0.1.2-SNAPSHOT"
:description "Provides a visual display for ClojureScript tests."
:url "https://github.com/bhauman/cljs-test-display"
: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.9.0"]
[org.clojure/clojurescript "1.10.238" :scope "provided"]]
: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"]}
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.1.2"]
[com.bhauman/rebel-readline-cljs "0.1.3"]
[org.clojure/clojurescript "1.10.238"]]
:source-paths ["src" "dev" "test"]
:resource-paths ["resources" "dev-resources" "target"]
;; need to add the compliled assets to the :clean-targets
:clean-targets ^{:protect false} ["target/public" :target-path]}})