-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: error when using * as recommended #102
Comments
EDIT: I think the best recommendation is to use It is self-explanatory and it avoids the issue below. IssueConsider the following:
root
└── projects
├── A
├── B
└── C
// root package.json
{
"name": "my-workspace",
"workspaces": [
"projects/A",
"projects/B"
]
}
// A package.json
{
"name": "A"
}
// B package.json
{
"name": "B",
"dependencies": {
"A": "^1.0.0"
}
} SolutionUsing the following will makes // A package.json
{
"name": "A",
"version": "0.0.0-semantically-released"
}
// B package.json
{
"name": "B",
"version": "0.0.0-semantically-released"
"dependencies": {
"A": "0.0.0-semantically-released"
}
} |
Lools like an old elusive bug in the deps updating algorithm. I've tried to replace concurrent events flow with toposort-based queue, but it may have gotten even worse. |
I don't think this is related to your update as the error here comes from the But anyhow it was just a "recommendation" in your documentation, so updating the doc to recommend |
`multi-semantic-release`'s readme says to use `*` as the version field for monorepo packages, but this fails in a strange way. This switches them to `0.0.0-semantically-released` as recommended in a Github issue. See: dhoulb/multi-semantic-release#102
`multi-semantic-release`'s readme says to use `*` as the version field for monorepo packages, but this fails in a strange way. This switches them to `0.0.0-semantically-released` as recommended in a Github issue. See: dhoulb/multi-semantic-release#102
According to the documentation:
But using
"*"
will bring the following error :Invalid version: "*"
.So I think it might be better to recommend not having the
version
property at all (which works in my case).Trace
The text was updated successfully, but these errors were encountered: