aboutsummaryrefslogtreecommitdiff
path: root/bb.edn
diff options
context:
space:
mode:
authorShagun Agrawal <agrawalshagun07@gmail.com>2024-10-23 18:35:05 +0530
committerShagun Agrawal <agrawalshagun07@gmail.com>2024-10-23 18:35:05 +0530
commit4e1218fbbf7eada7732c328b13da02dd70df062d (patch)
tree28e77d53ab11b7580b774a30bc0ab3fe364a189b /bb.edn
parent8e5f643f876ffce3e563ba9b46bffc6178ca4c69 (diff)
Add nrepl and storm options to bb
Diffstat (limited to 'bb.edn')
-rw-r--r--bb.edn6
1 files changed, 6 insertions, 0 deletions
diff --git a/bb.edn b/bb.edn
index 5f08560..a995603 100644
--- a/bb.edn
+++ b/bb.edn
@@ -13,6 +13,12 @@
run-main {:doc "Run main"
:task (apply clojure "-M -m cljcc.cljcc" *command-line-args*)}
+ nrepl {:doc "Starts a nrepl session."
+ :task (apply clojure "-M:nrepl" *command-line-args*)}
+
+ storm {:doc "Starts a nrepl session with storm debugger."
+ :task (apply clojure "-M:storm" *command-line-args*)}
+
build-uberjar {:doc "Builds uberjar"
:task (when (seq (fs/modified-since "target/cljcc"
["src" "build.clj" "deps.edn" "test" "resources"]))