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