You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -702,7 +702,7 @@ To find and "prepare" libs in the dependency tree you can use the `prep` tool pr
702
702
clj -X:deps prep
703
703
----
704
704
705
-
The prep task will find all libs in the dependency expansion and look for libs that are source libs, need prep (based on their `:deps/prep-lib` key), and are not yet prepped (based on the `:ensure` dir in their `:deps/prep-lib` map). Those libs will run the command specified there by alias and function, as if: `clj -T:<alias> <fn>`.
705
+
The https://clojure.github.io/tools.deps.cli/clojure.tools.deps.cli.api-api.html#clojure.tools.deps.cli.api/prep[prep] task will find all libs in the dependency expansion and look for libs that are source libs, need prep (based on their `:deps/prep-lib` key), and are not yet prepped (based on the `:ensure` dir in their `:deps/prep-lib` map). Those libs will run the command specified there by alias and function, as if: `clj -T:<alias> <fn>`.
706
706
707
707
Once a library has been prepped, it does not need to be prepped again by other users of this git library version.
708
708
@@ -711,6 +711,8 @@ Once a library has been prepped, it does not need to be prepped again by other u
711
711
Should you use a prep step that compiles your Clojure code? Generally, no. All users of this git library on a machine will share the prepared classpath created by the prep step. The choice of Clojure compiler and dependent libraries is better left to each application making using of this lib. For more on using dev-time compilation, see the <<xref/../../guides/dev_startup_time#,Dev Startup Time>> guide.
0 commit comments