legacy-knowledge-base
公開されました Jun. 30, 2025

react-select "依存関係を使用してjarにバンドルされたテストケースがデプロイエラーになる

written-by

Marco Abamonga

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • package.jsonに依存関係として "react-select "を含むjarのデプロイは、ビルドプロセスの一部としてバンドルされたテストケース(特にtest/resolver/malformed_package_json/package.json)が原因で失敗する可能性があります。

Environment

  • DXP 7.4

解決策

    1. プロジェクトに.npmbundlerrcファイルを作成する。

    2. 以下の行を追加する。

      {
      "exclude": {
      "*": ["test"]
      }

      }

    3. ビルド・フォルダー内のすべてのファイルを削除する

  • 4. npm run build

    これでjarファイルはエラーなしでデプロイされるはずだ。

did-this-article-resolve-your-issue

legacy-knowledge-base