From 3fb8b02ad3a1834a637a5cc29225b53662dbfe55 Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Wed, 17 Sep 2025 17:29:54 +0200 Subject: [PATCH] fix(deps): update installation process for local development - use `npm ci` instead of `npm install` - Add .npmrc with ignore-scripts=true --- .npmrc | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..97b895e2 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +ignore-scripts=true diff --git a/README.md b/README.md index 15f75732..3d0c1619 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ If you would prefer to build from the source, install and link: ``` git clone git@github.com:nodejs/node-core-utils.git cd node-core-utils -npm install +npm ci npm link ```