fix(generateCommitMessageFromGitDiff.ts): update content to include WHAT and WHY in commit message instructions

fix(i18n/en.json): update commitFix and commitFeat messages to include reasons for changes
This commit is contained in:
di-sukharev
2023-04-28 15:31:10 +08:00
parent 51613c2aea
commit 42c26cbaaa
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{
"localLanguage": "english",
"commitFix": "fix(server.ts): change port variable case from lowercase port to uppercase PORT",
"commitFeat": "feat(server.ts): add support for process.env.PORT environment variable",
"commitFix": "fix(server.ts): change port variable case from lowercase port to uppercase PORT to improve semantics",
"commitFeat": "feat(server.ts): add support for process.env.PORT environment variable to be able to run app on a configurable 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."
}