Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 891 Bytes

LERNALITE.md

File metadata and controls

47 lines (30 loc) · 891 Bytes

Lerna-Lite Commands

List Packages

List local packages:

pnpm list:packages

List local packages that have changed:

pnpm list:changed

Preview Versions and Publishes

Preview the output result of the version command without actually executing it:

Note: Follow the directions here to set up a GITHUB_TOKEN environment variable in your operating system.

npx lerna version --dry-run

Preview the output result of the publish command without actually executing it:

npx lerna publish from-package --dry-run

Version and Publish From CLI

Version packages via the cli:

Note: Follow the directions here to set up a GITHUB_TOKEN environment variable in your operating system.

npx lerna version

Publish packages via the cli:

npx lerna publish from-package