Skip to content

Commit ce2f033

Browse files
authored
chore: removing debugger statement (#11)
1 parent a7869da commit ce2f033

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export function determinePackageManager(rootDir: string): 'yarn' | 'npm' {
6464
}
6565

6666
export function executeTemplate(input: string, args: Record<string, string>, sections: Map<string, 'show' | 'hide' | 'comment'>): string {
67-
debugger;
6867
for (const key in args)
6968
input = input.replace(`{{${key}}}`, args[key]);
7069
const result: string[] = [];

0 commit comments

Comments
 (0)