From 6fd14ab0c1602bc0f600f163b22f3c584823d0c0 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Wed, 12 Aug 2026 16:30:16 -0700 Subject: [PATCH] fix(release): release process was broken by recent change removing .npmrc file Refs: #5178 --- dev-utils/make-distribution.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-utils/make-distribution.sh b/dev-utils/make-distribution.sh index 55f537443b..5c3175d1ef 100755 --- a/dev-utils/make-distribution.sh +++ b/dev-utils/make-distribution.sh @@ -41,13 +41,11 @@ mkdir -p nodejs/node_modules/elastic-apm-node tar --strip-components=1 -xf elastic-apm-node-*.tgz; rm elastic-apm-node-*.tgz; cp $TOP/package-lock.json ./; - cp $TOP/.npmrc ./; # Then install the "package-lock.json"-dictated dependencies (excluding # devDependencies). Use '--ignore-scripts' to have confidence no code but # ours and npm's is running. npm ci --omit=dev --ignore-scripts; - rm package-lock.json; - rm .npmrc) + rm package-lock.json) # Generate a NOTICE file including the licenses of all included deps. NOTICE=nodejs/node_modules/elastic-apm-node/NOTICE.md