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 5451ace commit a74c877Copy full SHA for a74c877
1 file changed
src/skillMd.ts
@@ -8,7 +8,8 @@ export async function getSkillMdContent(): Promise<string> {
8
async function getSkillMdPath(): Promise<string> {
9
try {
10
// @ts-expect-error - Bun-specific import attribute
11
- const mod = await import('../integrations/SKILL.md', { with: { type: 'text' } });
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
12
+ const mod: { default: string } = await import('../integrations/SKILL.md', { with: { type: 'text' } });
13
return mod.default;
14
} catch {
15
return resolve(import.meta.dirname, '../integrations/SKILL.md');
0 commit comments