From 644cc9ffc9572a02f6bff2d6f3e59976ab1aa430 Mon Sep 17 00:00:00 2001 From: Daniel Dyla Date: Mon, 7 Mar 2022 08:51:48 -0500 Subject: [PATCH] chore: remove unnecessary version:update scripts and don't check in fastify version.ts (#930) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gerhard Stöbich --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index e51b2e75b51..5075b1911ed 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "types": "build/src/index.d.ts", "repository": "open-telemetry/opentelemetry-js-contrib", "scripts": { - "precompile": "tsc --version && lerna run version --scope @opentelemetry/propagator-aws-xray --include-dependencies", + "precompile": "tsc --version && lerna run version:update --scope @opentelemetry/propagator-aws-xray --include-dependencies", "prewatch": "npm run precompile", "compile": "tsc --build tsconfig.json tsconfig.esm.json", "clean": "tsc --build --clean tsconfig.json tsconfig.esm.json", @@ -15,7 +15,6 @@ "test:browser": "nyc karma start --single-run", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", - "version": "node ../../scripts/version-update.js", "watch": "tsc --build --watch tsconfig.json tsconfig.esm.json", "prepare": "npm run compile" },