node_cache: Disable pnpm update check.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2023-05-02 11:58:35 -07:00 committed by Tim Abbott
parent 2afe6fea3a
commit a31ff01211
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ def setup_node_modules(production: bool = DEFAULT_PRODUCTION) -> None:
"/usr/local/bin/pnpm",
"install",
"--frozen-lockfile",
"--prefer-offline",
*(["--prod"] if production else []),
]
)