Skip to content

Commit 2d722ca

Browse files
chore: rename initial commits to feats
1 parent 2d4b166 commit 2d722ca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/create/createWithOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export async function createWithOptions({
6161
await withSpinner("Initializing GitHub repository", async () => {
6262
await $`git remote add origin https://github.com/${options.owner}/${options.repository}`;
6363
await $`git add -A`;
64-
await $`git commit --message ${"chore: initialized repo ✨"}`;
64+
await $`git commit --message ${"feat: initialized repo ✨"}`;
6565
await $`git push -u origin main --force`;
6666
await initializeGitHubRepository(octokit, options);
6767
});

src/create/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export async function create(args: string[]) {
4040
`cd ${inputs.options.repository}`,
4141
`pnpm run initialize`,
4242
`git add -A`,
43-
`git commit -m "chore: initial commit ✨"`,
43+
`git commit -m "feat: initial commit ✨"`,
4444
`git push -u origin main`,
4545
],
4646
},

src/initialize/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function initialize(args: string[]) {
1818
label: "You may consider committing these changes:",
1919
lines: [
2020
`git add -A`,
21-
`git commit -m "chore: initialized repo ✨`,
21+
`git commit -m "feat: initialized repo ✨`,
2222
`git push`,
2323
],
2424
},

0 commit comments

Comments
 (0)