-
Notifications
You must be signed in to change notification settings - Fork 914
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
Slash in subject results in undesired results #572
Comments
Ah I see, thanks for the report! I think this might be related to a fix we implemented to allow slashes in the Let me create a branch/pr with the scenario described here, after that we can find a way to fix this. |
I feel like this might be a way to go. So this would still be checked in the future:
If
Correct? |
Yeah, I feel the same. But it's one of the options available 😄
Yeah, exactly! I should definitely add some examples next time too 😄 |
Hmm, wait, I don't think our solution would work @escapedcat. The idea works fine for One thing I'll try out now is to move the delimiter-split-logic to the |
I think that actually did the trick! Because the slashes are very scope-specific, in hindsight, it would be better to implement that in the |
Fix from #574 is merged and released in |
Thank you guys, works well for me |
I use this config:
If I write something like this, then the cli throws an error:
chore: Update @angular/core
.Expected Behavior
The subject should be valid.
Current Behavior
The toCase function in case.js will be called two times:
Update @angular
core
So there is somewhere a split by the slash, which results in a validation error because
core
starts with an lower case.Affected packages
Possible Solution
I think there should be no split in the subject. Maybe there is a connection to #291
The text was updated successfully, but these errors were encountered: