Upgrade to Nostrify v0.30.0

This commit is contained in:
Alex Gleason
2024-08-05 15:45:02 -05:00
parent b2136b35e8
commit db6417bad9
4 changed files with 25 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
// deno-lint-ignore-file require-await
import { NDatabase } from '@nostrify/db';
import {
NDatabase,
NIP50,
NKinds,
NostrEvent,

View File

@@ -2,9 +2,10 @@ import fs from 'node:fs/promises';
import path from 'node:path';
import { Database as Sqlite } from '@db/sqlite';
import { NDatabase } from '@nostrify/db';
import { NostrEvent } from '@nostrify/nostrify';
import { DenoSqlite3Dialect } from '@soapbox/kysely-deno-sqlite';
import { finalizeEvent, generateSecretKey } from 'nostr-tools';
import { NDatabase, NostrEvent } from '@nostrify/nostrify';
import { FileMigrationProvider, Kysely, Migrator } from 'kysely';
import { PostgresJSDialect, PostgresJSDialectConfig } from 'kysely-postgres-js';
import postgres from 'postgres';