To get started with the repo:
$ git clone git@github.com:lerna/lerna.git && cd lerna
$ npm installIn order to run the tests:
$ npm testOr the linter:
$ npm run lintIf you want to test out Lerna on local repos:
$ npm run build
$ npm linkThis 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 devWhich will start a watch task that will continuously re-build Lerna while you are working on it.
If you would like to check test coverage, run the coverage script, then open coverage/lcov-report/index.html in your favorite browser.
$ npm run coverage
$ xdg-open coverage/lcov-report/index.html