Installation de l'invité de commande
This guide explains how you can add the Command Line Interface to your project.
-
How to Install the All Contributors CLI tool
The all-contributors CLI module is distributed via npm which is bundled with node and should be installed as one of your project’s
devDependencies.To install it run:
Fenêtre de terminal npm i -D all-contributors-cliFenêtre de terminal pnpm add -D all-contributors-cliFenêtre de terminal yarn add -D all-contributors-cliAlternatively, Arch Linux users can install the
all-contributors-clipackage from the AUR. -
Initialize the Project
Init the project using
initand answer a few questionsFenêtre de terminal npx all-contributors initFenêtre de terminal pnpm all-contributors initFenêtre de terminal yarn all-contributors initFenêtre de terminal ./node_modules/.bin/all-contributors init -
Ajoutez quelques contributeurs
Fenêtre de terminal npx all-contributors add jfmengels docnpx all-contributors generateFenêtre de terminal pnpm all-contributors add jfmengels docpnpm all-contributors generateFenêtre de terminal yarn all-contributors add jfmengels docyarn all-contributors generateFor more on the commands see CLI usage.
-
Mettez à jour votre document de Contribution
Consider updating your
CONTRIBUTING.mdor similar with steps on how your contributors can add themselves. You can even link to the cli usage documentation. -
Optionally add shortcut scripts to your
package.jsonYou can optionally add shortcuts to your commands in your
package.jsonscriptsfield.Par exemple :
package.json {"scripts": {"contributors:add": "all-contributors add","contributors:generate": "all-contributors generate"}}To support shortcuts such as:
Fenêtre de terminal npx contributors:add jfmengels docFenêtre de terminal pnpm contributors:add jfmengels docFenêtre de terminal yarn contributors:add jfmengels doc
