From 1dc5b11f03a4dbaddd9df1c1588cc56282e566c6 Mon Sep 17 00:00:00 2001 From: Avraham Sakal Date: Wed, 28 Jun 2023 21:47:46 -0400 Subject: [PATCH] Enable `ingest.ts` to import `db.ts` in REPL --- src/ingest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ingest.ts b/src/ingest.ts index 7c5f08c..107eda4 100644 --- a/src/ingest.ts +++ b/src/ingest.ts @@ -1,6 +1,6 @@ import { join, dirname } from 'node:path' import fs from 'node:fs/promises'; -import {sql} from './db'; +import {sql} from './db.js'; import {parse} from 'csv-parse/sync';