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.
This commit is contained in:
2024-08-14 21:23:20 +02:00
parent f7dc771e0a
commit bc9376bce7

View File

@@ -11,8 +11,7 @@
"lint:fix": "eslint --fix --ext .ts .", "lint:fix": "eslint --fix --ext .ts .",
"test:file": "jest --watch --onlyChanged --coverage=true --verbose", "test:file": "jest --watch --onlyChanged --coverage=true --verbose",
"test:verbose": "jest --verbose", "test:verbose": "jest --verbose",
"version:show": "node -e \"console.log(require('./package.json').version)\"", "version:show": "node -e \"console.log(require('./package.json').version)\""
"postinstall": "npm run build:tsc"
}, },
"repository": { "repository": {
"type": "git", "type": "git",