【Rails】webpacker-dev-server実行中のエラー「Could not freeze ... Cannot read property 'hash' of undefined」

はじめに

webpacker-dev-server実行中に、突然以下のエラーが出力されました。

[hardsource:3154a74b] Could not freeze ./app/webpack/packs/application.js: Cannot read property 'hash' of undefined
(node:69641) UnhandledPromiseRejectionWarning: TypeError: current.readableIdentifier is not a function
    at formatError (/Users/user/Products/project-name/node_modules/webpack/lib/Stats.js:352:30)
    at Array.map (<anonymous>)
    at Stats.toJson (/Users/user/Products/project-name/node_modules/webpack/lib/Stats.js:359:31)
    at WebpackAssetsManifest.handleEmit (/Users/user/Products/project-name/node_modules/webpack-assets-manifest/src/WebpackAssetsManifest.js:445:41)
    at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/user/Products/project-name/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:5:1)
    at AsyncSeriesHook.lazyCompileHook (/Users/user/Products/project-name/node_modules/tapable/lib/Hook.js:154:20)
    at Compiler.emitAssets (/Users/user/Products/project-name/node_modules/webpack/lib/Compiler.js:491:19)
    at onCompiled (/Users/user/Products/project-name/node_modules/webpack/lib/Watching.js:51:19)
    at /Users/user/Products/project-name/node_modules/webpack/lib/Compiler.js:681:15
    at _next0 (eval at create (/Users/user/Products/project-name/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:14:1)
(node:69641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:69641) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

2行目以降が出力されるのは稀で、大抵は1行目だけ単一行または複数行出力され、そのときはページが表示されなくなるなどの影響はありません。

原因を調べましたが結局よくわからず、とりあえず対処の方法だけ記事にしておきます。

対処

webpack-dev-serverを実行中の場合は一旦停止します。その後、以下のコマンドを実行してキャッシュを削除します。

$ rm -rf node_modules/.cache/hard-source/

再度webpack-dev-serverを実行すればエラーは解消されているはずです。

関連記事

【Rails】Paranoiaを使用した論理削除(ソフトデリート)
# はじめに Paranoiaは、Railsアプリケーションで論理削除(ソフトデリート)を実現するためのGemです。 論理削除は、データベースのレコードを物理的に削除するのではなく、削除フラグを設定することで「削除済み」とみなす方法です。こ [...]
2024年7月20日 21:33
【Rails】activerecord-multi-tenantを使用したマルチテナントアプリケーションの作成
# はじめに マルチテナントアプリケーションでは、複数の顧客(テナント)が同じアプリケーションを利用するため、データの分離が必要です。 activerecord-multi-tenantは、このようなマルチテナント環境をサポートするための便 [...]
2024年7月18日 16:50
【Rails】RubyとRailsにおけるattr_reader, attr_writer, attr_accessorの概念と使用方法
# はじめに RubyとRailsの開発において、`attr_reader`,`attr_writer`,`attr_accessor`は非常に便利なメソッドです。これらは、クラス内でインスタンス変数に対するゲッターおよびセッターメソッドを簡単に [...]
2024年7月17日 18:11
【Rails】RubyとRailsにおけるyieldの概念と使用方法
# はじめに RubyとRailsにおける`yield`は、メソッドやテンプレートの中で動的にコードブロックを実行する能力を提供し、これによってコードの再利用性と拡張性が大幅に向上します。本記事では、RubyとRailsにおける`yield`の概 [...]
2024年7月17日 13:15
【Rails】AASMを使用してオブジェクトの状態遷移を効率的に管理
# はじめに Railsアプリケーションにおいて、オブジェクトの状態管理は重要な課題の一つです。AASM (Acts As State Machine) gemは、複雑な状態遷移を効率的に管理します。本記事では、AASMの基本的な使い方を解説して [...]
2024年7月16日 18:00
【Rails】RSpec + Swagger + rswagでアプリケーションのAPIをテストおよびドキュメント化する方法
# はじめに Railsアプリケーションの開発において、APIのテストとドキュメント化は重要な要素です。 RSpecはテストフレームワークとして広く利用されており、SwaggerはAPIの設計とドキュメント化を支援します。これらを統合するr [...]
2024年7月16日 14:27
【Rails】mailcatcherを使用して開発環境でメール送信をテストする方法
# はじめに mailcatcherは、開発環境でのメール送信をキャプチャするためのツールです。ローカルで送信されたメールをブラウザ上で簡単に確認できるようにします。mailcatcherをRailsアプリケーションで使用する方法について説明しま [...]
2024年7月15日 16:37
【Rails】impressionistを使用してページビューやクリック数を追跡する方法
# はじめに impressionist Gemを使用してRailsアプリケーションでページビューやクリック数を追跡する方法について説明します。 # 実装方法 ## impressionist Gemのインストール まず、impre [...]
2024年7月15日 14:18