zef
子命令有一个--deps-only
标志,用于install
仅安装模块的依赖项。
zef install --deps-only .
这会将depends
对象中引用的所有模块安装在META6.json
. 是否有类似的标志来安装test-depends
对象中的所有模块META6.json
?
zef install . --deps-only --/depends --/build-depends --test-depends
最后--test-depends
的 不是必需的,但为了清楚起见包括在内。--/depends
跳过depends
META6 字段下的项目,并--/build-depends
跳过build-depends
META6 字段下的项目。
相关位来自zef --help
:
FLAGS
--deps-only Install only the dependency chains of the requested distributions
--/depends Do not fetch runtime dependencies
--/test-depends Do not fetch test dependencies
--/build-depends Do not fetch build dependencies