feat!: use commander for command management
from this commit npm package commander will be used for command management, making sub-commands possible, due to what commiting from now and on is called through rcz commit
This commit is contained in:
300
src/index.ts
300
src/index.ts
@@ -14,6 +14,7 @@ import fs from "fs";
|
||||
import path from "path";
|
||||
import { Config } from "./types";
|
||||
import simpleGit from "simple-git";
|
||||
import { Command } from "commander";
|
||||
|
||||
const GetConfig = async () => {
|
||||
if (fs.existsSync(path.join(process.cwd(), ".rczrc"))) {
|
||||
@@ -26,153 +27,164 @@ const GetConfig = async () => {
|
||||
return null;
|
||||
}
|
||||
};
|
||||
const program = new Command();
|
||||
|
||||
(async () => {
|
||||
const config = await GetConfig();
|
||||
program
|
||||
.name("rcz")
|
||||
.description("Resultium commit standardization command-line interface")
|
||||
.version("1.0.0");
|
||||
|
||||
intro("Creating a conventional commit");
|
||||
program
|
||||
.command("commit")
|
||||
.description("Create a conventional commit")
|
||||
.action(async () => {
|
||||
const config = await GetConfig();
|
||||
|
||||
if (!fs.existsSync(path.join(process.cwd(), ".git"))) {
|
||||
cancel("Git repository has not been initialized");
|
||||
process.exit(0);
|
||||
}
|
||||
intro("Creating a conventional commit");
|
||||
|
||||
const stageAll = await confirm({
|
||||
message: "Stage all changes?",
|
||||
initialValue: true,
|
||||
if (!fs.existsSync(path.join(process.cwd(), ".git"))) {
|
||||
cancel("Git repository has not been initialized");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const stageAll = await confirm({
|
||||
message: "Stage all changes?",
|
||||
initialValue: true,
|
||||
});
|
||||
|
||||
if (isCancel(stageAll)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const type: string | symbol = await select({
|
||||
message: "Choose a commit type",
|
||||
options: config?.types || [
|
||||
{
|
||||
label: "feat",
|
||||
value: "feat",
|
||||
hint: "new feature",
|
||||
},
|
||||
{
|
||||
label: "fix",
|
||||
value: "fix",
|
||||
hint: "bug fix",
|
||||
},
|
||||
{
|
||||
label: "build",
|
||||
value: "build",
|
||||
hint: "changes that affect the build system, configs or external dependencies (e.g. npm, .prettierrc)",
|
||||
},
|
||||
{
|
||||
label: "ci",
|
||||
value: "ci",
|
||||
hint: "change to CI/CD configurations and scripts (e.g. CircleCI, GitHub workflows)",
|
||||
},
|
||||
{
|
||||
label: "docs",
|
||||
value: "docs",
|
||||
hint: "documentation changes (e.g. README, CHANGELOG)",
|
||||
},
|
||||
{
|
||||
label: "perf",
|
||||
value: "perf",
|
||||
hint: "code change, that improves performance",
|
||||
},
|
||||
{
|
||||
label: "refactor",
|
||||
value: "refactor",
|
||||
hint: "code change that neither fixes a bug nor adds a feature",
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
if (isCancel(type)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const scope: string | symbol = await text({
|
||||
message: "Input a scope (e.g. router, forms, core) or leave empty",
|
||||
validate: (value) => {
|
||||
if (config?.scopes && value) {
|
||||
if (!config?.scopes.includes(value))
|
||||
return "This scope is not allowed by local configuration";
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
if (isCancel(scope)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const message = await text({
|
||||
message: `Briefly describe made changes in imperative tense, maximum length 50`,
|
||||
validate: (value) => {
|
||||
if (value.length > 50) {
|
||||
return "Your message is too long";
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
if (isCancel(message)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const body = await text({
|
||||
message: `Insert a commit body, recommended length 100, can be left empty`,
|
||||
});
|
||||
|
||||
if (isCancel(body)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const isBreaking = await confirm({
|
||||
message: "Does this commit have breaking changes?",
|
||||
initialValue: false,
|
||||
});
|
||||
|
||||
if (isCancel(isBreaking)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const resolvesIssue = await confirm({
|
||||
message: "Does this commit resolve an existing issue?",
|
||||
initialValue: false,
|
||||
});
|
||||
|
||||
if (isCancel(resolvesIssue)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const issue = resolvesIssue
|
||||
? await text({ message: "Enter an issue identifier, e.g. #274" })
|
||||
: null;
|
||||
|
||||
if (isCancel(issue)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const commitMessage = `${type.toString()}${
|
||||
scope ? `(${scope.toString()})` : ``
|
||||
}${isBreaking ? "!" : ""}: ${message.toString()}${
|
||||
resolvesIssue ? ` (${issue?.toString()})` : ``
|
||||
}${body ? `\n\n${body}` : ``}`;
|
||||
|
||||
if (stageAll) {
|
||||
await simpleGit().add(".").commit(commitMessage);
|
||||
} else {
|
||||
await simpleGit().commit(commitMessage);
|
||||
}
|
||||
|
||||
note(commitMessage);
|
||||
|
||||
outro("Finished creating a conventional commit, feel free to push");
|
||||
});
|
||||
|
||||
if (isCancel(stageAll)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const type: string | symbol = await select({
|
||||
message: "Choose a commit type",
|
||||
options: config?.types || [
|
||||
{
|
||||
label: "feat",
|
||||
value: "feat",
|
||||
hint: "new feature",
|
||||
},
|
||||
{
|
||||
label: "fix",
|
||||
value: "fix",
|
||||
hint: "bug fix",
|
||||
},
|
||||
{
|
||||
label: "build",
|
||||
value: "build",
|
||||
hint: "changes that affect the build system, configs or external dependencies (e.g. npm, .prettierrc)",
|
||||
},
|
||||
{
|
||||
label: "ci",
|
||||
value: "ci",
|
||||
hint: "change to CI/CD configurations and scripts (e.g. CircleCI, GitHub workflows)",
|
||||
},
|
||||
{
|
||||
label: "docs",
|
||||
value: "docs",
|
||||
hint: "documentation changes (e.g. README, CHANGELOG)",
|
||||
},
|
||||
{
|
||||
label: "perf",
|
||||
value: "perf",
|
||||
hint: "code change, that improves performance",
|
||||
},
|
||||
{
|
||||
label: "refactor",
|
||||
value: "refactor",
|
||||
hint: "code change that neither fixes a bug nor adds a feature",
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
if (isCancel(type)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const scope: string | symbol = await text({
|
||||
message: "Input a scope (e.g. router, forms, core) or leave empty",
|
||||
validate: (value) => {
|
||||
if (config?.scopes && value) {
|
||||
if (!config?.scopes.includes(value))
|
||||
return "This scope is not allowed by local configuration";
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
if (isCancel(scope)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const message = await text({
|
||||
message: `Briefly describe made changes in imperative tense, maximum length 50`,
|
||||
validate: (value) => {
|
||||
if (value.length > 50) {
|
||||
return "Your message is too long";
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
if (isCancel(message)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const body = await text({
|
||||
message: `Insert a commit body, recommended length 100, can be left empty`,
|
||||
});
|
||||
|
||||
if (isCancel(body)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const isBreaking = await confirm({
|
||||
message: "Does this commit have breaking changes?",
|
||||
initialValue: false,
|
||||
});
|
||||
|
||||
if (isCancel(isBreaking)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const resolvesIssue = await confirm({
|
||||
message: "Does this commit resolve an existing issue?",
|
||||
initialValue: false,
|
||||
});
|
||||
|
||||
if (isCancel(resolvesIssue)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const issue = resolvesIssue
|
||||
? await text({ message: "Enter an issue identifier, e.g. #274" })
|
||||
: null;
|
||||
|
||||
if (isCancel(issue)) {
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const commitMessage = `${type.toString()}${
|
||||
scope ? `(${scope.toString()})` : ``
|
||||
}${isBreaking ? "!" : ""}: ${message.toString()}${
|
||||
resolvesIssue ? ` (${issue?.toString()})` : ``
|
||||
}${body ? `\n\n${body}` : ``}`;
|
||||
|
||||
if (stageAll) {
|
||||
await simpleGit().add(".").commit(commitMessage);
|
||||
} else {
|
||||
await simpleGit().commit(commitMessage);
|
||||
}
|
||||
|
||||
note(commitMessage);
|
||||
|
||||
outro("Finished creating a conventional commit, feel free to push");
|
||||
})();
|
||||
program.parse();
|
||||
|
||||
Reference in New Issue
Block a user