aboutsummaryrefslogtreecommitdiff
path: root/cli/deps.edn
diff options
context:
space:
mode:
authorYour Name <agrawalshagun07@gmail.com>2025-03-16 18:03:26 +0530
committerYour Name <agrawalshagun07@gmail.com>2025-03-16 18:03:26 +0530
commit32499638cef3c49ff686b19b5708d6b08712c526 (patch)
tree31f09287602d243b22660fe455e5174bdcc280b4 /cli/deps.edn
parent277319fa392f5ee9f21eedf2c4d224739f045690 (diff)
Refactor into cli and cljcc-compiler folders
Pass all tests. Fix babashka tasks and build setup. Repl is behaving in unexpected ways, otherwise working as expected.
Diffstat (limited to 'cli/deps.edn')
-rw-r--r--cli/deps.edn7
1 files changed, 5 insertions, 2 deletions
diff --git a/cli/deps.edn b/cli/deps.edn
index b0313f3..d074706 100644
--- a/cli/deps.edn
+++ b/cli/deps.edn
@@ -4,5 +4,8 @@
com.github.clj-easy/graal-build-time {:mvn/version "1.0.5"}
cljcc/cljcc {:local/root "../cljcc-compiler"}}
:aliases
- {:run
- {:main-opts ["-m" "cli.cli"]}}}
+ {:run {:main-opts ["-m" "cli.cli"]}
+ :build {:deps {io.github.clojure/tools.build
+ {:mvn/version "0.10.3"}}
+ :jvm-opts ["-Dclojure.compiler.direct-linking=true"]
+ :ns-default build}}}