downgrade tailwind for now, and fix build errors

This commit is contained in:
Markus Unterwaditzer
2026-04-24 01:22:02 +02:00
committed by Brad Warren
parent d56386a7e5
commit fe69dd1abf
5 changed files with 961 additions and 81 deletions
+3 -1
View File
@@ -19,7 +19,9 @@ export function parse_ndjson(input: string): NewlineDeliminatedJson {
// however, if we've reached the end of the input, that means we
// were given invalid nd-json
if (lines.length === 0) {
throw new Error(`unable to parse invalid nd-json: ${e}, "${current_line}"`);
throw new Error(`unable to parse invalid nd-json: ${e}, "${current_line}"`, {
cause: e,
});
}
}
}