
Company News
Meet the Socket Team at RSAC and BSidesSF 2026
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.
@lerna-lite/core
Advanced tools
The Lerna-Lite core & utils, basically the shared code used by all commands.
Follow the instruction provided in the main README page.
Options for lerna sub-commands that need filtering
--scope <glob>Include only packages with names matching the given glob.
$ lerna exec --scope my-component -- ls -la
$ lerna run --scope "toolbar-*" test
$ lerna run --scope package-1 --scope "*-2" lint
Note: For certain globs, it may be necessary to quote the option argument to avoid premature shell expansion.
npxWhen running lerna with npx, it is necessary to use an explicit "=" when passing glob arguments. This is to prevent npx from prematurely expanding the arguments.
For example:
$ npx lerna run --scope="toolbar-*" test
$ npx lerna run --scope="package-{1,2,5}" test
--ignore <glob>Exclude packages with names matching the given glob.
$ lerna exec --ignore "package-{1,2,5}" -- ls -la
$ lerna run --ignore package-1 test
$ lerna run --ignore "package-@(1|2)" --ignore package-3 lint
More examples of filtering can be found here.
--no-privateExclude private packages. They are included by default.
--since [ref]Only include packages that have been changed since the specified ref. If no ref is passed, it defaults to the most-recent tag.
# List the contents of packages that have changed since the latest tag
$ lerna exec --since -- ls -la
# Run the tests for all packages that have changed since `main`
$ lerna run test --since main
# List all packages that have changed since `some-branch`
$ lerna ls --since some-branch
This can be particularly useful when used in CI, if you can obtain the target branch a PR will be going into, because you can use that as the ref to the --since option. This works well for PRs going into the default branch as well as feature branches.
--exclude-dependentsExclude all transitive dependents when running a command with --since, overriding the default "changed" algorithm.
This flag has no effect without --since, and will throw an error in that case.
--include-dependentsInclude all transitive dependents when running a command regardless of --scope, --ignore, or --since.
# example with lerna watch
$ lerna watch --scope=my-package-1 --include-dependents -- lerna run build --stream --scope=\$LERNA_PACKAGE_NAME --include-dependents
--include-dependenciesInclude all transitive dependencies when running a command regardless of --scope, --ignore, or --since.
Used in combination with any command that accepts --scope (ls, run, exec, watch).
Ensures that all dependencies (and dev dependencies) of any scoped packages (either through --scope or --ignore) are operated on as well.
Note: This will override the
--scopeand--ignoreflags.
This is useful for situations where you want to "set up" a single package that relies on other packages being set up.
# example with lerna watch, watch only package "package-4" and its dependencies and run the test script for the package that changed
$ lerna watch --scope="package-4" --include-dependencies -- lerna run test --scope=\$LERNA_PACKAGE_NAME
--include-merged-tags$ lerna exec --since --include-merged-tags -- ls -la
Include tags from merged branches when running a command with --since. This is only useful if you do a lot of publishing from feature branches, which is not generally recommended.
FAQs
Lerna-Lite core implementation module
The npm package @lerna-lite/core receives a total of 36,780 weekly downloads. As such, @lerna-lite/core popularity was classified as popular.
We found that @lerna-lite/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.

Research
/Security News
Malicious Packagist packages disguised as Laravel utilities install an encrypted PHP RAT via Composer dependencies, enabling remote access and C2 callbacks.

Research
/Security News
OpenVSX releases of Aqua Trivy 1.8.12 and 1.8.13 contained injected natural-language prompts that abuse local AI coding agents for system inspection and potential data exfiltration.