What is @lerna/diff?
@lerna/diff is a part of the Lerna monorepo management toolset. It is used to show the git diff of all packages or a specific package since the last release. This is particularly useful in a monorepo setup where multiple packages are managed within a single repository.
What are @lerna/diff's main functionalities?
Show diff for all packages
This command shows the git diff for all packages in the monorepo since the last release. It helps in understanding what changes have been made across the entire repository.
npx lerna diff
Show diff for a specific package
This command shows the git diff for a specific package in the monorepo since the last release. Replace <package-name> with the actual name of the package. This is useful for focusing on changes made to a particular package.
npx lerna diff <package-name>
Other packages similar to @lerna/diff
changesets
Changesets is a tool for managing versioning and changelogs with a focus on monorepos. It allows you to create changesets that describe the changes made, and then generates changelogs and version bumps based on those changesets. Unlike @lerna/diff, which focuses on showing diffs, Changesets provides a more comprehensive solution for managing changes and releases in a monorepo.
lerna
Lerna is a tool for managing JavaScript projects with multiple packages. While @lerna/diff is a specific command within the Lerna toolset, Lerna itself offers a wide range of functionalities including bootstrapping dependencies, running scripts across packages, and versioning. It provides a more holistic approach to monorepo management compared to the focused functionality of @lerna/diff.
nx
Nx is a smart, fast, and extensible build system with first-class monorepo support and powerful integrations. It offers advanced features like distributed caching, task orchestration, and dependency graph visualization. While @lerna/diff focuses on showing git diffs, Nx provides a more comprehensive suite of tools for managing and optimizing monorepos.
lerna diff
Diff all packages or a single package since the last release
Install lerna for access to the lerna
CLI.
Usage
$ lerna diff [package]
$ lerna diff
$ lerna diff package-name
Diff all packages or a single package since the last release.
Similar to lerna changed
. This command runs git diff
.