semantic-release/docs/01-usage/installation.md
Crhistian Ramirez d45d8b6170 docs: fix typo
2019-08-11 09:32:29 -07:00

731 B

Installation

Local installation

For Node modules projects we recommend installing semantic-release locally and running the semantic-release command with npx:

$ npm install --save-dev semantic-release

Then in the CI environment:

$ npx semantic-release

Note: npx is a tool bundled with npm@>=5.2.0. It is used to conveniently find the semantic-release binary and to execute it. See What is npx for more details.

Global installation

Note: Global installation is no longer recommended. Please use local installation and npx instead.