From f6e4b3ad06035f9114473749d9c86a7d7c89bb44 Mon Sep 17 00:00:00 2001 From: Pranav Date: Tue, 4 Feb 2025 16:50:30 -0800 Subject: [PATCH] Remove pnpm install --- lib/tasks/build.rake | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/build.rake b/lib/tasks/build.rake index 70561c2a7..8036166c3 100644 --- a/lib/tasks/build.rake +++ b/lib/tasks/build.rake @@ -2,7 +2,7 @@ # https://github.com/rails/rails/issues/43906#issuecomment-1099992310 task before_assets_precompile: :environment do # run a command which starts your packaging - system('pnpm install') + system('pnpm install') unless ENV['VITE_RUBY_SKIP_ASSETS_PRECOMPILE_INSTALL'] == 'true' system('echo "-------------- Bulding SDK for Production --------------"') system('pnpm run build:sdk') system('echo "-------------- Bulding App for Production --------------"') diff --git a/package.json b/package.json index 5b5a90fed..68abbf00b 100644 --- a/package.json +++ b/package.json @@ -140,7 +140,7 @@ }, "engines": { "node": "20.x", - "pnpm": ">=9.x" + "pnpm": "9.x" }, "husky": { "hooks": {