diff options
author | 2024-04-02 21:07:28 +0530 | |
---|---|---|
committer | 2024-04-02 11:37:28 -0400 | |
commit | 713f99e849b26edb831ea6527b7103ad7a6b200f (patch) | |
tree | b96955c7198ca1ff0f61a8e0d865b0c357efb048 /packages/db/src/utils.ts | |
parent | 51112ab3f1b134740e8307743bbb15cb0d8bdbb3 (diff) | |
download | astro-713f99e849b26edb831ea6527b7103ad7a6b200f.tar.gz astro-713f99e849b26edb831ea6527b7103ad7a6b200f.tar.zst astro-713f99e849b26edb831ea6527b7103ad7a6b200f.zip |
fix(db): isolate AstroDbError from core utils (#10646)
* fix(db): isolate AstroDbError from core utils
* add changeset
Diffstat (limited to 'packages/db/src/utils.ts')
-rw-r--r-- | packages/db/src/utils.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/db/src/utils.ts b/packages/db/src/utils.ts index 1e7b00b12..4e1a18685 100644 --- a/packages/db/src/utils.ts +++ b/packages/db/src/utils.ts @@ -1,8 +1,2 @@ -import { AstroError } from 'astro/errors'; - export { defineDbIntegration } from './core/utils.js'; export { asDrizzleTable } from './runtime/index.js'; - -export class AstroDbError extends AstroError { - name = 'Astro DB Error'; -} |