Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if (!options.skipGitInit) {
try {
await $`git init`;
await $`git add .`;
await $`git commit -m "${'feat: initial commit'}"`;
await $`git commit -m ${'feat: initial commit'}`;
spinner.succeed();
} catch (error) {
debug('Failed to initialize git repository', error);
Expand Down
2 changes: 1 addition & 1 deletion src/lib/conf.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Conf from 'conf';

type CliConfig = {
allowTelemetry?: boolean;
allowTelemetry?: boolean | undefined;
};

export const config = new Conf<CliConfig>({
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,

"moduleResolution": "NodeNext",
"module": "NodeNext",
Expand Down