import config from "@stealth-developers/config"; const proc = Bun.spawn([process.execPath, "x", "drizzle-kit", ...Bun.argv.slice(2)], { env: { PATH: process.env.PATH, DATABASE_URL: config.db.url, DATABASE_AUTH: config.db.auth, DATABASE_DIALECT: config.db.dialect, }, stdout: "inherit", stderr: "inherit", }); await proc.exited;