Files
Managor c20587ae23 *: improve more info links and add option placeholders part 3 (#19560)
* batch1

* batch

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

---------

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>
Co-authored-by: Sahil Afrid Farookhi <msafarookhi@gmail.com>
2025-11-24 16:45:14 -06:00

605 B

lerna

Manage JavaScript projects with multiple packages. More information: https://lerna.js.org/docs/api-reference/commands.

  • Initialize project files (lerna.json, package.json, .git, etc.):

lerna init

  • Install all external dependencies of each package and symlink together local dependencies:

lerna bootstrap

  • Run a specific script for every package that contains it in its package.json:

lerna run {{script}}

  • Execute an arbitrary shell command in every package:

lerna exec -- {{ls}}

  • Publish all packages that have changed since the last release:

lerna publish