如何修改 Yarn 的配置?

How do I modify the configuration of Yarn?

npm我可以运行

npm config set cafile "path/to/my/cert.pem"

你能用 Facebook 的 yarn 做一些类似的事情吗?

当我 运行 yarn -h 时,我没有看到任何用于设置任何类型配置的选项。

我是不是漏掉了什么?

您可以使用相同的语法在 yarn 中设置配置值:

yarn config set cafile "path/to/my/cert.pem"

尽管如此,如果您已经在 npm 配置中设置了此设置,它应该失败并使用那里设置的内容。因此,您可以为 yarnnpm.

使用不同的 cafile 配置值

如果你 运行 yarn help 你会看到所有的 yarn 命令。 运行 yarn -h 目前与 运行ning yarn install help 相同,因此您看不到配置或任何其他命令。有一个开放的 feature request 使 yarn -hyarn --help 等同于 yarn help,因为它在 npm.