mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 19:38:56 +08:00
c20587ae23
* 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>
605 B
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