Closed2023/10/21にクローズ2yarn workspace (v3) で nohoist したいnbstsh2023/10/21に更新monorepo 環境で、ある package (一つの workspace) のみ root の node_modules に hoist せず、 local の node_modules に 全ての dependencies を install したいケース 何回も調べてるのでメモ https://yarnpkg.com/configuration/manifest#installConfig nbstsh2023/10/21に更新 installConfig.hoistingLimits を "workspaces" に設定すればOK package.json // ... "installConfig": { "hoistingLimits": "workspaces" } 返信を追加このスクラップは2023/10/21にクローズされました
nbstsh2023/10/21に更新monorepo 環境で、ある package (一つの workspace) のみ root の node_modules に hoist せず、 local の node_modules に 全ての dependencies を install したいケース 何回も調べてるのでメモ https://yarnpkg.com/configuration/manifest#installConfig nbstsh2023/10/21に更新 installConfig.hoistingLimits を "workspaces" に設定すればOK package.json // ... "installConfig": { "hoistingLimits": "workspaces" } 返信を追加
nbstsh2023/10/21に更新 installConfig.hoistingLimits を "workspaces" に設定すればOK package.json // ... "installConfig": { "hoistingLimits": "workspaces" }