2024Clojure 状态调查!中分享你的想法。

欢迎!请查看关于页面获取更多关于如何使用本站的信息。

0 投票
Clojure CLI

根据https://clojure.github.io/tools.tools/clojure.tools.tools.api.html#var-show,你可以这样调用工具的 show 命令:

示例:clj -Ttools show deps-graph

可能是我遗漏了什么,但看起来你需要一个key,比如

lucretius:~/work/living_clojure$ clj -Ttools show new
Key is missing value: new

lucretius:~/work/living_clojure$ clj -Ttools show :tool new
{:lib io.github.seancorfield/deps-new,
 :coord
 {:git/tag "v0.4.13",
  :git/sha "879c4eb50df92fcd8c11423c2081e00998d7b613",
  :git/url "https://github.com/seancorfield/deps-new.git"}}
Default namespace:  org.corfield.new

1 答案

0 投票

被选中
 
最佳答案

你在哪里看到示例:clj -Ttools show deps-graph

我没有在文档链接中看到这一点。

哦,我是盲目的。我会修复,谢谢。
...