Files
create-better-t-stack/lerna.json
Aman Varshney 4729ee0420 feat: add Lerna integration for proper monorepo versioning and publishing
- Add Lerna with independent versioning for better monorepo management
- Configure auto to work with Lerna for proper package detection
- Add canary release configuration for pull requests
- Fix tag conflicts and versioning issues
- Only publish CLI package, keep other packages private
- Support canary, prerelease, and production releases
2025-08-15 16:42:50 +05:30

18 lines
287 B
JSON

{
"version": "independent",
"npmClient": "bun",
"command": {
"publish": {
"verifyAccess": false,
"message": "chore(release): publish"
},
"version": {
"message": "chore(release): version"
}
},
"packages": [
"apps/*",
"packages/*"
]
}