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