前提・実現したいこと
ruby on rails において、herokuにデプロイをしています。
リッチエディタであるCKEditorを、サイトからダウンロードし、assets配下に入れることで使おうとしました。
ローカルでは問題なく動作し、デプロイをしようとしたところ。以下の問題が発生しました。
発生している問題・エラーメッセージ
エラーログ:herokuのbuild logから
-----> Preparing app for Rails asset pipeline Running: rake assets:precompile Yarn executable was not detected in the system. Download Yarn at https://yarnpkg.com/en/docs/install rake aborted! Uglifier::Error: /tmp/build_0abfb78e_/app/assets/config/manifest.js:2 /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/uglifier-4.2.0/lib/uglifier.rb:291:in `parse_result' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/uglifier-4.2.0/lib/uglifier.rb:221:in `run_uglifyjs' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/uglifier-4.2.0/lib/uglifier.rb:166:in `compile' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/compressing.rb:65:in `block in js_compressor=' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/legacy_proc_processor.rb:31:in `call' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:75:in `call_processor' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:57:in `block in call_processors' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:56:in `reverse_each' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:56:in `call_processors' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:134:in `load_from_unloaded' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:60:in `block in load' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:44:in `load' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/cached_environment.rb:20:in `block in initialize' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/cached_environment.rb:47:in `load' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:388:in `load' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:357:in `block in link_paths' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:367:in `block in resolve_paths' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:363:in `each' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:363:in `resolve_paths' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:356:in `link_paths' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:317:in `process_link_directory_directive' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:180:in `block in process_directives' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:178:in `each' /tmp/build_0abfb78e_/vendor/bundle/ruby/2.5.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:178:in `process_directives' ・・・
試したこと
Uglifierのエラーということですが、下記ページ
https://qiita.com/Thort/items/18c44604aba65303c221
はすでに対応していて、問題がありませんでした。
Uglifierにおいて、エラーの詳細文なしのエラーに遭遇した方がいらっしゃれば、アドバイスをいただきたいです。
足りない情報があれば補足させていただきます。
補足情報(FW/ツールのバージョンなど)
CKEditorのjsファイル(gemではない)を抜いたらデプロイができたので、原因がCKEditorのjsファイルであることまでは特定しました。
CKEditorは公式サイトでbuildしたものをzipでダウンロードし、生成されたjsファイルをそのままassets配下に入れています。
あなたの回答
tips
プレビュー