From 392e58b0be62447906fd40355fd745f3a39fae3e Mon Sep 17 00:00:00 2001 From: Arunim Chaudhary <47343112+arunim2405@users.noreply.github.com> Date: Wed, 16 Oct 2024 01:27:29 +0530 Subject: [PATCH] fix: Use pnpm in make setup command (#10289) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7f2680a2d..1c5ce297c 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ RAILS_ENV ?= development setup: gem install bundler bundle install - yarn install + pnpm install db_create: RAILS_ENV=$(RAILS_ENV) bundle exec rails db:create @@ -30,7 +30,7 @@ server: RAILS_ENV=$(RAILS_ENV) bundle exec rails server -b 0.0.0.0 -p 3000 burn: - bundle && yarn + bundle && pnpm install run: @if [ -f ./.overmind.sock ]; then \