mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
- 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
18 lines
287 B
JSON
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/*"
|
|
]
|
|
}
|