Skip to content

Commit 2419d9f

Browse files
Update CONTRIBUTING.md to use npm install for local development
Changed all references from npm ci to npm install in documentation: - Setup instructions - Typical workflow example - Local build instructions This aligns with the change to use npm install for local development while CI workflows continue to use npm ci for reproducible builds.
1 parent d597dd0 commit 2419d9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The `@deepnote/blocks` package is published on GitHub Packages. To install it, y
5858
```
5959
Replace `YOUR_TOKEN_HERE` with your actual token.
6060

61-
After completing these steps, you can install dependencies normally with `npm ci`. The project's `.npmrc` file is already configured to use GitHub Packages for the `@deepnote` scope.
61+
After completing these steps, you can install dependencies normally with `npm install`. The project's `.npmrc` file is already configured to use GitHub Packages for the `@deepnote` scope.
6262

6363
On Apple Silicon, you will have to use system versions of `libsodium` and `libzmq` instead of the bundled ones:
6464

@@ -78,7 +78,7 @@ npm_config_build_from_source=true npm install zeromq@
7878
Install the dependecies:
7979

8080
```shell
81-
npm ci
81+
npm install
8282
# Run this to setup the necessary pre-commit hooks.
8383
npm run setup-precommit-hook
8484
python3 -m venv .venv
@@ -277,7 +277,7 @@ Here's an example of a typical workflow:
277277

278278
1. Sync to main (get your fork's main to match vscode-jupyter's main)
279279
1. Create branch
280-
1. `npm ci`
280+
1. `npm install`
281281
1. `npm run clean`
282282
1. Start VS code Insiders root
283283
1. CTRL+SHIFT+B (run the task `compile`)
@@ -354,7 +354,7 @@ Steps to build the extension on your machine once you've cloned the repo:
354354
```bash
355355
> npm install -g @vscode/vsce
356356
# Perform the next steps in the vscode-jupyter folder.
357-
> npm ci
357+
> npm install
358358
> npm run clean
359359
> npm run package # This step takes around 10 minutes.
360360
```

0 commit comments

Comments
 (0)