Update deno.json imports
This commit is contained in:
parent
9ccf6bbea0
commit
80e554a5c9
|
@ -16,8 +16,7 @@
|
|||
"@nostrify/nostrify": "jsr:@nostrify/nostrify@^0.9.7",
|
||||
"~/fixtures/": "./fixtures/",
|
||||
"kysely": "npm:kysely@^0.26.3",
|
||||
"pg": "npm:pg@^8.11.5",
|
||||
"pg-pool": "npm:pg-pool@^3.6.2"
|
||||
"kysely_deno_postgres": "https://deno.land/x/kysely_deno_postgres@v0.4.0/mod.ts"
|
||||
},
|
||||
"lint": {
|
||||
"include": ["src/", "scripts/"],
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { Kysely, PostgresAdapter, PostgresIntrospector, PostgresQueryCompiler } from 'kysely';
|
||||
import { PostgreSQLDriver } from 'kysely_deno_postgres';
|
||||
|
||||
import { DittoTables } from '@/db/DittoTables.ts';
|
||||
import { PostgreSQLDriver } from 'https://deno.land/x/kysely_deno_postgres@v0.4.0/mod.ts';
|
||||
|
||||
export class DittoPostgres {
|
||||
static db: Kysely<DittoTables> | undefined;
|
||||
|
|
Loading…
Reference in New Issue