From 36dd0abf9d21d79cdddff85c3588b290033ecaa5 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 10 Feb 2025 09:18:43 +0100 Subject: [PATCH] fix: use pnpm in debian/rules --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index c752a06c..94832131 100755 --- a/debian/rules +++ b/debian/rules @@ -15,4 +15,4 @@ build: mkdir -p build-deps cp package.json build-deps - (cd build-deps && npm install --omit=dev --no-audit --prefer-offline) + (cd build-deps && pnpm install --prod --config.audit=true --prefer-offline)