-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathproject.clj
More file actions
24 lines (24 loc) · 1.53 KB
/
Copy pathproject.clj
File metadata and controls
24 lines (24 loc) · 1.53 KB
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 superlifter "0.1.8-SNAPSHOT"
:description "A DataLoader for Clojure/script"
:url "https://github.com/oliyh/superlifter"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[funcool/urania "0.2.0"]
[funcool/promesa "11.0.678"]
[org.clojure/tools.logging "1.3.0"]]
:profiles {:provided {:dependencies [[org.clojure/clojure "1.12.3"]
[org.clojure/clojurescript "1.12.42"]]}
:test {:dependencies [[com.walmartlabs/lacinia-pedestal "1.3.1"]]}
:dev {:dependencies [[binaryage/devtools "1.0.7"]
[com.bhauman/figwheel-main "0.2.20"]
[org.clojure/tools.reader "1.3.7"]
[cider/piggieback "0.6.0"]
[nrepl/nrepl "1.5.0"]]
:resource-paths ["target"]
:clean-targets ^{:protect false} ["target"]
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}}
: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" "dist"]
"fig:test" ["run" "-m" "figwheel.main" "-co" "test.cljs.edn" "-m" superlifter.test-runner]
"test" ["do" ["clean"] ["test"] ["fig:test"]]})