Skip to content

Commit

Permalink
Switch build commands from Yarn to NPM
Browse files Browse the repository at this point in the history
* Replace 'yarn' with 'npm' in Rakefile tasks to resolve runtime issue
  • Loading branch information
malkoG committed Jun 8, 2024
1 parent d7fb99d commit d73d47d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d73d47d

Please sign in to comment.