From f5271d2585f604199ad236db06d2c66e2c01bcec Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Fri, 23 Feb 2024 12:04:26 -0800 Subject: [PATCH] fix for 'npm ci' failures imported from PR #1955 --- plugins/node/instrumentation-perf-hooks/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/node/instrumentation-perf-hooks/package.json b/plugins/node/instrumentation-perf-hooks/package.json index 6e40c2aeb5..a48ae1ce1a 100644 --- a/plugins/node/instrumentation-perf-hooks/package.json +++ b/plugins/node/instrumentation-perf-hooks/package.json @@ -13,7 +13,7 @@ "lint:fix": "eslint . --ext .ts --fix", "precompile": "tsc --version && lerna run version:update --scope @opentelemetry/instrumentation-perf-hooks --include-dependencies", "prewatch": "npm run precompile", - "prepare": "npm run compile", + "prepublishOnly": "npm run compile", "test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'", "version:update": "node ../../../scripts/version-update.js" },