From 49623d87e7993f7a72413f8b725923a5af81b0e9 Mon Sep 17 00:00:00 2001 From: "tatsuyoshi.mashiko" Date: Wed, 6 Mar 2024 13:17:22 +0900 Subject: [PATCH] update install command of yarn --- src/runtimes/nodejs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtimes/nodejs.js b/src/runtimes/nodejs.js index ff62abc..2453b51 100644 --- a/src/runtimes/nodejs.js +++ b/src/runtimes/nodejs.js @@ -59,7 +59,7 @@ class NodeJSRuntime { this.commands = { npm: 'npm install --production --only=prod', - yarn: 'yarn --production', + yarn: 'yarn workspaces focus --all --production', pnpm: 'pnpm install --prod' }; }