From 2452705c4a74bf3e7751652e59b0141386bd2a39 Mon Sep 17 00:00:00 2001 From: Priyanka Punukollu Date: Sun, 1 Mar 2026 02:45:27 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20use=20npm=20install=20instead=20of=20npm?= =?UTF-8?q?=20ci=20=E2=80=94=20no=20package-lock.json=20in=20repo,=20ignor?= =?UTF-8?q?e-scripts=20prevents=20prisma=20postinstall=20conflict?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made-with: Cursor --- nixpacks.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixpacks.toml b/nixpacks.toml index 1d7b07b08..acb23c5b3 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -1,7 +1,7 @@ providers = ["node"] [phases.install] -cmds = ["NPM_CONFIG_IGNORE_SCRIPTS=true npm ci --legacy-peer-deps"] +cmds = ["npm install --legacy-peer-deps --ignore-scripts"] [phases.build] cmds = ["npx prisma generate && npm run build:production"]