Skip to content

Commit 58688fc

Browse files
committed
feat(CLI): don't attempt to commit if user.name/email is not set
1 parent abef54a commit 58688fc

File tree

3 files changed

+38
-5
lines changed

3 files changed

+38
-5
lines changed

src/cli/tasks.ts

+13-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ export interface Tasks {
2626
readonly gitEmail: string;
2727
readonly gitName: string;
2828
}>;
29-
readonly initialCommit: (hash: string, projectDir: string) => Promise<void>;
29+
readonly initialCommit: (
30+
hash: string,
31+
projectDir: string,
32+
name: string,
33+
email: string
34+
) => Promise<boolean>;
3035
readonly install: (
3136
shouldInstall: boolean,
3237
runner: Runner,
@@ -104,7 +109,9 @@ export const getUserInfo = (spawner: ExecaStatic) => async () => {
104109

105110
export const initialCommit = (spawner: ExecaStatic) => async (
106111
hash: string,
107-
projectDir: string
112+
projectDir: string,
113+
name: string,
114+
email: string
108115
) => {
109116
const opts: Options = {
110117
cwd: projectDir,
@@ -113,6 +120,9 @@ export const initialCommit = (spawner: ExecaStatic) => async (
113120
};
114121
await spawner('git', ['init'], opts);
115122
await spawner('git', ['add', '-A'], opts);
123+
if (name === Placeholders.name || email === Placeholders.email) {
124+
return false;
125+
}
116126
await spawner(
117127
'git',
118128
[
@@ -122,6 +132,7 @@ export const initialCommit = (spawner: ExecaStatic) => async (
122132
],
123133
opts
124134
);
135+
return true;
125136
};
126137

127138
export const install = (spawner: ExecaStatic) => async (

src/cli/tests/cli.unit.spec.ts

+20-1
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,29 @@ test('getUserInfo: suppresses errors and returns empty strings', async t => {
120120
});
121121

122122
test('initialCommit: throws generated errors', async t => {
123-
const error = await t.throws(initialCommit(mockErr(1))('deadbeef', 'fail'));
123+
const error = await t.throws(
124+
initialCommit(mockErr(1))('deadbeef', 'fail', 'name', '[email protected]')
125+
);
124126
t.is(error.code, 1);
125127
});
126128

129+
test("initialCommit: don't attempt to commit if user.name/email is not set", async t => {
130+
// tslint:disable-next-line:no-let
131+
let calls = 0;
132+
const errorIf3 = ((() => {
133+
calls++;
134+
calls === 1 ? t.pass() : calls === 2 ? t.pass() : t.fail();
135+
}) as any) as ExecaStatic;
136+
t.false(
137+
await initialCommit(errorIf3)(
138+
'deadbeef',
139+
'fail',
140+
Placeholders.name,
141+
Placeholders.email
142+
)
143+
);
144+
});
145+
127146
test('install: uses the correct runner', async t => {
128147
const mock = (((runner: Runner) => {
129148
runner === Runner.Yarn ? t.pass() : t.fail();

src/cli/typescript-starter.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,11 @@ export async function typescriptStarter(
144144
await tasks.install(install, runner, projectPath);
145145

146146
const spinner7 = ora(`Initializing git repository`).start();
147-
await tasks.initialCommit(commitHash, projectPath);
148-
spinner7.succeed();
147+
(await tasks.initialCommit(commitHash, projectPath, gitName, gitEmail))
148+
? spinner7.succeed()
149+
: spinner7.fail(
150+
"Git config user.name and user.email are not configured. You'll need to `git commit` yourself."
151+
);
149152

150153
console.log(`\n${chalk.blue.bold(`Created ${name} 🎉`)}\n`);
151154
}

0 commit comments

Comments
 (0)