This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-04-17
Channels
- # announcements (8)
- # babashka (27)
- # beginners (60)
- # biff (7)
- # calva (3)
- # cider (10)
- # cljs-dev (69)
- # clojure (18)
- # clojure-europe (12)
- # clojure-hungary (1)
- # clojure-korea (2)
- # clojure-new-zealand (12)
- # clojure-nl (1)
- # clojure-norway (80)
- # clojure-uk (9)
- # clojurescript (55)
- # cursive (69)
- # data-science (16)
- # events (5)
- # helix (11)
- # hyperfiddle (23)
- # jobs (1)
- # lsp (5)
- # malli (14)
- # matrix (1)
- # missionary (2)
- # off-topic (40)
- # portal (31)
- # re-frame (17)
- # reitit (11)
- # releases (11)
- # shadow-cljs (4)
- # squint (4)
- # tools-deps (5)
- # yamlscript (4)
What is the correct way to do this?
clojure -A:shadow-cljs -T:build -P
That gives this error: Namespace build loaded but function not found: -P
If I use -A:build
instead of -T:build
, the classpath I get is different (the current directory is added as one of the first few paths).
clojure -P -T:shadow-cljs:build
should download the deps for all used in the combination classpath (which may or may not be correct, hard to say)
you may be best to do:
clojure -P -A:shadow-cljs
clojure -P -T:build
to actually download the deps needed for those two different commands (version selection could easily yield different versions between them)👍 1
@U064X3EF3 That worked, thanks!