From bc9376bce77db12c55692279bbf4eead6890c622 Mon Sep 17 00:00:00 2001 From: Max P Date: Wed, 14 Aug 2024 21:23:20 +0200 Subject: [PATCH] Remove redundant postinstall npm script Simplified the npm scripts by removing the unnecessary "postinstall" script which was triggering the TypeScript build. This step was redundant since the build process is already handled separately. --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 94dcdc8..1744eff 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,7 @@ "lint:fix": "eslint --fix --ext .ts .", "test:file": "jest --watch --onlyChanged --coverage=true --verbose", "test:verbose": "jest --verbose", - "version:show": "node -e \"console.log(require('./package.json').version)\"", - "postinstall": "npm run build:tsc" + "version:show": "node -e \"console.log(require('./package.json').version)\"" }, "repository": { "type": "git",