Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions dev-utils/make-distribution.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading