Skip to content

Commit 769ff54

Browse files
committed
fix: generateLLMs did not finish running after payload run changes
1 parent 302766e commit 769ff54

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/scripts/generateLLMs.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-console */
12
import { writeFile } from 'fs/promises'
23
import { join } from 'path'
34

@@ -34,4 +35,5 @@ async function generateLLMs() {
3435
console.log(`Wrote llms-full.txt to ${fullFilePath}`)
3536
}
3637

37-
void generateLLMs()
38+
// @ts-expect-error - this is fine, typescript won't need to compile this
39+
await generateLLMs()

0 commit comments

Comments
 (0)