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 6f306ee commit 0a0bdeaCopy full SHA for 0a0bdea
packages/theme/src/cli/services/init.ts
@@ -136,10 +136,10 @@ export async function createAIInstructionFiles(
136
return {}
137
}
138
139
- const symlinkMap: {[key in Exclude<AIInstruction, 'all' | 'cursor'>]: string} = {
+ const symlinkMap = {
140
github: 'copilot-instructions.md',
141
claude: 'CLAUDE.md',
142
- }
+ } as const
143
144
const symlinkName = symlinkMap[instruction as Exclude<AIInstruction, 'all' | 'cursor'>]
145
const symlinkPath = joinPath(themeRoot, symlinkName)
0 commit comments