feat: add breaking change flag (-w), and new semantic types (ci, build, perf)#18
Open
pallax03 wants to merge 4 commits into
Open
feat: add breaking change flag (-w), and new semantic types (ci, build, perf)#18pallax03 wants to merge 4 commits into
pallax03 wants to merge 4 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces new semantic git commit types (
ci,build, andperf), and refactors all semantic commit scripts to support optional scope and breaking change flags in a consistent way. Additionally, the installation process and documentation are updated to reflect these enhancements. The main improvements are grouped below.New commit types and script additions:
git-ci,git-build, andgit-perf, each supporting optional scope (-s) and breaking change (-w) flags.Refactoring and consistency improvements:
git-chore,git-docs,git-feat,git-fix,git-localize,git-refactor,git-style,git-test) to use a unified approach for handling scope and breaking change flags, improving maintainability and user experience.install.shto match the new script logic, ensuring aliases support both scope and breaking change flags.Documentation updates:
README.mdto document the new commit types and explain the usage of the-s(scope) and-w(breaking change) flags for all semantic commit commands.