Skip to content

Commit bdcd0e0

Browse files
committed
fix: remove '"' character on first commit
1 parent a500de0 commit bdcd0e0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ if (!options.skipGitInit) {
109109
try {
110110
await $`git init`;
111111
await $`git add .`;
112-
await $`git commit -m "${'feat: initial commit'}"`;
112+
await $`git commit -m ${'feat: initial commit'}`;
113113
spinner.succeed();
114114
} catch (error) {
115115
debug('Failed to initialize git repository', error);

src/lib/conf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Conf from 'conf';
22

33
type CliConfig = {
4-
allowTelemetry?: boolean;
4+
allowTelemetry?: boolean | undefined;
55
};
66

77
export const config = new Conf<CliConfig>({

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
"strict": true,
1212
"noUncheckedIndexedAccess": true,
13+
"exactOptionalPropertyTypes": true,
1314

1415
"moduleResolution": "NodeNext",
1516
"module": "NodeNext",

0 commit comments

Comments
 (0)