From d73d47de7237c8661883990358ebb8d11b7f6a29 Mon Sep 17 00:00:00 2001 From: malkoG Date: Sat, 8 Jun 2024 22:51:14 +0900 Subject: [PATCH] Switch build commands from Yarn to NPM * Replace 'yarn' with 'npm' in Rakefile tasks to resolve runtime issue --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 0752e863..e5f7c4fa 100644 --- a/Rakefile +++ b/Rakefile @@ -29,12 +29,12 @@ end namespace :frontend do desc "Build the frontend with esbuild for deployment" task :build do - sh "yarn run esbuild" + sh "npm run esbuild" end desc "Watch the frontend with esbuild during development" task :dev do - sh "yarn run esbuild-dev" + sh "npm run esbuild-dev" rescue Interrupt end end