From 258c5042e48c873f68804225fea6bced622e155f Mon Sep 17 00:00:00 2001 From: Kevin Eger Date: Fri, 17 Oct 2025 17:37:03 +0000 Subject: [PATCH] docs: update setup to working npm ci variant `npm ci` hangs indefinitely. This repros across multiple machines, in a dev container and in a GitHub Codespace. Mimicking the GitHub Action install step, this change updates the docs to a working _flavour_ of `npm ci` to unblock contributors. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 567bba27fcd..87285a68d0a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,7 +29,7 @@ ```shell git clone https://github.com/microsoft/vscode-jupyter cd vscode-jupyter -npm ci +npm ci --ignore-scripts && npm run postinstall # Run this to setup the necessary pre-commit hooks. npm run setup-precommit-hook python3 -m venv .venv