bunderstack 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/email.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunderstack",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Batteries-included backend framework for Bun: CRUD APIs, auth, file storage, realtime, tRPC, email, and validated env from a single Drizzle schema and config object.",
5
5
  "keywords": [
6
6
  "backend",
package/src/email.ts CHANGED
@@ -114,7 +114,7 @@ function createSmtpAdapter(
114
114
  sendMail(opts: Record<string, unknown>): Promise<{ messageId?: string }>
115
115
  }> | null = null
116
116
  const getTransport = () => {
117
- transportPromise ??= import(specifier).then((mod) =>
117
+ transportPromise ??= import(/* @vite-ignore */ specifier).then((mod) =>
118
118
  (mod.default ?? mod).createTransport(smtpUrl),
119
119
  )
120
120
  return transportPromise