We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 302766e commit 769ff54Copy full SHA for 769ff54
1 file changed
src/scripts/generateLLMs.ts
@@ -1,3 +1,4 @@
1
+/* eslint-disable no-console */
2
import { writeFile } from 'fs/promises'
3
import { join } from 'path'
4
@@ -34,4 +35,5 @@ async function generateLLMs() {
34
35
console.log(`Wrote llms-full.txt to ${fullFilePath}`)
36
}
37
-void generateLLMs()
38
+// @ts-expect-error - this is fine, typescript won't need to compile this
39
+await generateLLMs()
0 commit comments