forked from di-sukharev/opencommit
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ET-1429: Single Line Commit Messages (#4)
* refactor: ET-1429: update prompts.ts to clarify commit message instructions * feat: ET-1429: add support for generating a single commit message by combining multiple commit messages into a single commit message title and description * chore: ET-1429: remove extra new line character when joining commit messages * feat: ET-1429: fix issueID variable being redeclared and not being properly checked for existence before confirming Issue ID --------- Co-authored-by: Matthew Salter <[email protected]>
- Loading branch information
1 parent
2ab378a
commit 9a1e4c3
Showing
5 changed files
with
92 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"localLanguage": "english", | ||
"commitFix": "fix: AB-1234: change port variable case from lowercase port to uppercase PORT to improve semantics", | ||
"commitFeat": "feat: AB-1234: add support for process.env.PORT environment variable to be able to run app on a configurable port", | ||
"commitFeat": "feat: AB-1234: add support for process.env.PORT environment variable to be able to run app on a configurable port and change port variable name to uppercase PORT", | ||
"commitDescription": "The port variable is now named PORT, which improves consistency with the naming conventions as PORT is a constant. Support for an environment variable allows the application to be more flexible as it can now run on any available port specified via the process.env.PORT environment variable." | ||
} |
This file contains 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