aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYour Name <agrawalshagun07@gmail.com>2025-06-21 18:07:30 +0530
committerYour Name <agrawalshagun07@gmail.com>2025-06-21 18:07:30 +0530
commit83a99a6e7660b91db1af4a7bacbc4940262d8395 (patch)
treea630d8dc1bcd58febd78fa22731978000a120249
parentafd18d36826f92504a05b4db83f2143afe4328fb (diff)
Remove unused bb task
-rw-r--r--bb.edn12
1 files changed, 0 insertions, 12 deletions
diff --git a/bb.edn b/bb.edn
index 00c6add..31a61f3 100644
--- a/bb.edn
+++ b/bb.edn
@@ -43,18 +43,6 @@
:depends [cli:build:jar]
:task (apply shell "java -jar target/cli/cljcc-cli.jar" *command-line-args*)}
- cli:build:wasm {:doc "Builds native image for WASM."
- :depends [cli:build:jar]
- :task
- (shell {:dir "target/cli"}
- "native-image"
- "--tool:svm-wasm"
- "-jar" "cljcc-cli.jar"
- "-o" "cljcc-cli-wasm"
- "--features=clj_easy.graal_build_time.InitClojureClasses"
- "--initialize-at-build-time"
- "--verbose")}
-
cli:build:native {:doc "Builds native image for CLI."
:depends [cli:build:jar]
:task