Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 629 Bytes

CONTRIBUTING.md

File metadata and controls

39 lines (27 loc) · 629 Bytes

Contributing to Lerna

To get started with the repo:

$ git clone git@github.com:lerna/lerna.git && cd lerna
$ npm install

In order to run the tests:

$ npm test

Or the linter:

$ npm run lint

If you want to test out Lerna on local repos:

$ npm run build
$ npm link

This will set your global lerna command to the local version.

Note that Lerna needs to be built after changes are made. So you can either run npm run build to run it once, or you can run:

$ npm run dev

Which will start a watch task that will continuously re-build Lerna while you are working on it.