CLI安装
1. 安装 CLI 工具
此模块通过与节点捆绑在一起的npm进行分布,并且应该已经安装在你项目的devDependencies
。
yarn add --dev all-contributors-cli # 或 npm i -D all-contributors-cli
另外,Arch Linux 用户可以从 AUR 安装 all-contributors-cli
包。
The CLI is node-based, if you don't wish to add a node dependency use the @all-contributors bot 🤖
2. 初始项目
使用init
来初始项目,并且回答一些问题。
yarn all-contributors init # 或 npx all-contributors init
# 或直接运行二进制文件
./node_modules/.bin/all-contributors init
3. 添加贡献者
yarn all-contributors add jfmengels doc
yarn all-contributors generate
命令详情请参阅CLI用法。
4. 更新你的贡献者文档
可以考虑更新你的CONTRIBUTING.md
或者类似文件,用来列举贡献者如何添加自己的步骤。 你甚至可以链接到cli usage documentation。
package.json
5. 可选择地添加快捷脚本到你的你可以选择在package.json
scripts
中添加快捷命令。
例如:
{
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
}
}
可用的快捷方式例如:
yarn contributors:add jfmengels doc