1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
import path from "path";
import { bunExe, bunEnv } from "harness";
const cwd = import.meta.dir;
export async function generateClient(type: string) {
generate(type);
// This should run the first time on a fresh db
try {
migrate(type);
} catch (err: any) {
if (err.message.indexOf("Environment variable not found:") !== -1) throw err;
}
return (await import(`./prisma/${type}/client`)).PrismaClient;
}
export function migrate(type: string) {
const result = Bun.spawnSync(
[
bunExe(),
"x",
"prisma",
"migrate",
"dev",
"--name",
"init",
"--schema",
path.join(cwd, "prisma", type, "schema.prisma"),
],
{
cwd,
env: {
...bunEnv,
NODE_ENV: undefined,
},
},
);
if (!result.success) throw new Error(result.stderr.toString("utf8"));
}
export function generate(type: string) {
const result = Bun.spawnSync(
[bunExe(), "prisma", "generate", "--schema", path.join(cwd, "prisma", type, "schema.prisma")],
{
cwd,
env: {
...bunEnv,
NODE_ENV: undefined,
},
},
);
if (!result.success) throw new Error(result.stderr.toString("utf8"));
}
|