We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7869da commit ce2f033Copy full SHA for ce2f033
src/utils.ts
@@ -64,7 +64,6 @@ export function determinePackageManager(rootDir: string): 'yarn' | 'npm' {
64
}
65
66
export function executeTemplate(input: string, args: Record<string, string>, sections: Map<string, 'show' | 'hide' | 'comment'>): string {
67
- debugger;
68
for (const key in args)
69
input = input.replace(`{{${key}}}`, args[key]);
70
const result: string[] = [];
0 commit comments