$ lerna init [--independent]$ lerna bootstrap [--hoist] [--no-hoist glob]$ lerna publish$ lerna import <path-to-external-repository>$ lerna run <npm script> -- [...args]$ lerna run test --since master
$ lerna run build --scope "foo-*"
$ lerna run watch --parallel --stream$ lerna exec -- <shell command>$ lerna exec -- ls
$ lerna exec -- rm rf ./node_modules$ lerna clean [--yes] [--scope] [--ignore]# Equivalent to:
$ lerna exec -- rm -rf ./node_modules