From f5675284c79f84b23cbfda851523d0cec2225735 Mon Sep 17 00:00:00 2001 From: Aayush <21987529+aayushbtw@users.noreply.github.com> Date: Fri, 12 Jan 2024 16:53:47 +0530 Subject: [PATCH] fix(docs): prisma not installed as dev dependency (#8119) --- docs/guides/ecosystem/prisma.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/ecosystem/prisma.md b/docs/guides/ecosystem/prisma.md index c67df3270e..88b75417ad 100644 --- a/docs/guides/ecosystem/prisma.md +++ b/docs/guides/ecosystem/prisma.md @@ -21,7 +21,8 @@ $ bun init Then install the Prisma CLI (`prisma`) and Prisma Client (`@prisma/client`) as dependencies. ```bash -$ bun add prisma @prisma/client +$ bun add -d prisma +$ bun add @prisma/client ``` ---