前提・実現したいこと
プログラム初学者です。
就職活動に必要なポートフォリオをRailsにて作成しております。
EC2(AWS)のRailsを起動し、手動デプロイできるように設定していました。
「bundle exec unicorn_rails -c config/unicorn.rb -E production -D」を実行しRailsを起動後、
アセットファイルをコンパイルするために、「rails assets:precompile RAILS_ENV=production」
と、EC2内のターミナル上でRAILS_ENV=productionコマンドを実行したのですが、
以下のようなエラーが発生し、先に進む事が出来なくなりました。
発生している問題・エラーメッセージ
[ec2-user@ip-172-31-34-42 photo_bank_2]$ rails assets:precompile RAILS_ENV=production yarn install v1.22.5 [1/4] Resolving packages... error Couldn't find package "@webassemblyjs/@1.9.0" required by "@webassemblyjs/wasm-parser@1.9.0" on the "npm" registry. info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
試したこと
アプリケーション作成当初、yarn installをし忘れかのかと思い、ローカル上のターミナルでyarn installを再度実行しましたが、
yarn install v1.22.10 [1/4] ???? Resolving packages... error Couldn't find package "@webassemblyjs/@1.9.0" required by "@webassemblyjs/wasm-parser@1.9.0" on the "npm" registry. info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
と、全く同じエラー文が出てしまいました。
ちなみにHerokuへのデプロイの最中にも同じようなエラー文「"@webassemblyjs/@1.9.0"」が表示されており、
この文面を検索して同様のエラーが無いか探してみたのですが、有力な情報を得る事が出来ませんでした。
補足情報(FW/ツールのバージョンなど)
- Ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-darwin20]
- Rails 6.0.3.7
追記
- yarn.lockは一切編集しておりません。
- webassembly(Wasm)を調べていると、リリースが間もないので情報が少ない、難解な言語という事を知り、引き続き色々調査しております。
あなたの回答
tips
プレビュー