Merge pull request #1533 from aloisklink/build/use-npm-prepare-instead-of-prepublishOnly

build: use npm prepare instead of prepublishOnly
This commit is contained in:
Ferdi Koomen 2023-07-05 10:06:45 +02:00 committed by GitHub
commit 7ae4295cba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@
"test:e2e": "jest --selectProjects E2E --runInBand --verbose",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prepublishOnly": "npm run clean && npm run release",
"prepare": "npm run clean && npm run release",
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b",
"docker": "docker build -t eeelenbaas/openapi-typescript-codegen ."
},