From 8cfaa6899829556e6ab4d364366551889dd63576 Mon Sep 17 00:00:00 2001 From: Scott Trinh Date: Tue, 9 Apr 2024 21:39:44 -0400 Subject: [PATCH] Some cleanup --- packages/driver/buildDeno.ts | 6 ------ packages/driver/src/credentials.ts | 8 -------- 2 files changed, 14 deletions(-) diff --git a/packages/driver/buildDeno.ts b/packages/driver/buildDeno.ts index b542eee5c..d51586b3e 100644 --- a/packages/driver/buildDeno.ts +++ b/packages/driver/buildDeno.ts @@ -18,12 +18,6 @@ await run({ { match: /^src\/index.node.ts$/, replace: "mod.ts" }, { match: /^src\//, replace: "_src/" }, ], - importRewriteRules: [ - { - match: /^debug$/, - replace: "npm:debug", - }, - ], injectImports: [ { imports: ["process"], diff --git a/packages/driver/src/credentials.ts b/packages/driver/src/credentials.ts index 3e794f53e..247fde9bd 100644 --- a/packages/driver/src/credentials.ts +++ b/packages/driver/src/credentials.ts @@ -11,15 +11,7 @@ export interface Credentials { port?: number; user: string; password?: string; - /** - * Either 'database' or 'branch' may appear in credentials, but not both. - * If both are specified, an error will be thrown. - */ database?: string; - /** - * Either 'database' or 'branch' may appear in credentials, but not both. - * If both are specified, an error will be thrown. - */ branch?: string; tlsCAData?: string; tlsSecurity?: TlsSecurity;