Instalacja CLI
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:
Okno terminala npm i -D all-contributors-cliOkno terminala pnpm add -D all-contributors-cliOkno terminala 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 questionsOkno terminala npx all-contributors initOkno terminala pnpm all-contributors initOkno terminala yarn all-contributors initOkno terminala ./node_modules/.bin/all-contributors init -
Dodaj kilku kontrybutorów
Okno terminala npx all-contributors add jfmengels docnpx all-contributors generateOkno terminala pnpm all-contributors add jfmengels docpnpm all-contributors generateOkno terminala yarn all-contributors add jfmengels docyarn all-contributors generateFor more on the commands see CLI usage.
-
Zaktualizuj dokumentację kontrybucji
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.Na przykład:
package.json {"scripts": {"contributors:add": "all-contributors add","contributors:generate": "all-contributors generate"}}To support shortcuts such as:
Okno terminala npx contributors:add jfmengels docOkno terminala pnpm contributors:add jfmengels docOkno terminala yarn contributors:add jfmengels doc
