admin管理员组

文章数量:1346310

I've been incrementally upgrading an old Rails app to Rails 7. Everything has gone well except now I'm pushing to Heroku and I'm getting and error saying esbuild is not found. Here's from the console.

remote: -----> Installing node-v22.11.0-linux-x64
remote: -----> Installing yarn-v1.22.22
remote: -----> Detecting rake tasks
remote: -----> Preparing app for Rails asset pipeline
remote:        Running: rake assets:precompile
remote:        yarn install v1.22.22
remote:        [1/4] Resolving packages...
remote:        success Already up-to-date.
remote:        Done in 0.05s.
remote:        yarn run v1.22.22
remote:        $ esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets
remote:        /bin/sh: 1: esbuild: not found
remote:        error Command failed with exit code 127.
remote:        info Visit  for documentation about this command.
remote:        rake aborted!
remote:        jsbundling-rails: Command build failed, ensure `yarn build` runs without errors
remote:        /tmp/build_a908d526/vendor/bundle/ruby/3.1.0/gems/jsbundling-rails-1.3.1/lib/tasks/jsbundling/build.rake:14:in `block (2 levels) in <main>'
remote:        Tasks: TOP => assets:precompile => javascript:build
remote:        (See full trace by running task with --trace)
remote: 
remote:  !
remote:  !     Precompiling assets failed.

Any thoughts? I've tried everyone on the Internet to solve but to no avail.

I've been incrementally upgrading an old Rails app to Rails 7. Everything has gone well except now I'm pushing to Heroku and I'm getting and error saying esbuild is not found. Here's from the console.

remote: -----> Installing node-v22.11.0-linux-x64
remote: -----> Installing yarn-v1.22.22
remote: -----> Detecting rake tasks
remote: -----> Preparing app for Rails asset pipeline
remote:        Running: rake assets:precompile
remote:        yarn install v1.22.22
remote:        [1/4] Resolving packages...
remote:        success Already up-to-date.
remote:        Done in 0.05s.
remote:        yarn run v1.22.22
remote:        $ esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets
remote:        /bin/sh: 1: esbuild: not found
remote:        error Command failed with exit code 127.
remote:        info Visit https://yarnpkg/en/docs/cli/run for documentation about this command.
remote:        rake aborted!
remote:        jsbundling-rails: Command build failed, ensure `yarn build` runs without errors
remote:        /tmp/build_a908d526/vendor/bundle/ruby/3.1.0/gems/jsbundling-rails-1.3.1/lib/tasks/jsbundling/build.rake:14:in `block (2 levels) in <main>'
remote:        Tasks: TOP => assets:precompile => javascript:build
remote:        (See full trace by running task with --trace)
remote: 
remote:  !
remote:  !     Precompiling assets failed.

Any thoughts? I've tried everyone on the Internet to solve but to no avail.

Share Improve this question asked 2 days ago Tony S.Tony S. 1,2832 gold badges10 silver badges13 bronze badges 3
  • What heroku stack and what build pack are you using? Posting the entire build for heroku would probably be beneficial. – engineersmnky Commented 2 days ago
  • Heroku-22. I figured out what I was missing. I had to add the node buildpack in the settings and it worked. Upgrading is "fun". – Tony S. Commented 2 days ago
  • Your question should be updated still, so that your answer actually makes sense. Right now it is improbably that your existing question would have lead to your provided answer. – engineersmnky Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 0

The issue was resolved with adding the node buildpack (heroku/nodejs) in the Heroku settings, under buildpacks.

本文标签: Having touble with Rails 7 UpgradeEsbuild Heroku ErrorStack Overflow