Skip to content

Commit

Permalink
chore: Configure prepare-release script
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Sep 1, 2021
1 parent 117aa84 commit 6223b00
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,36 @@
"scripts": {
"build": "rimraf dist && tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepare-release": "standard-version",
"prepublish": "npm run build",
"precommit": "npm run test",
"pretest": "npm run lint",
"test": "jest"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "refactor",
"section": "Maintenance Improvements"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/prisma/serverless-plugin-typescript.git"
Expand All @@ -34,6 +59,7 @@
"jest": "24.5.0",
"mock-fs": "4.9.0",
"rimraf": "2.6.3",
"standard-version": "^9.3.1",
"ts-jest": "24.0.2",
"tslint": "5.14.0",
"typescript": "^3.9.10"
Expand Down

0 comments on commit 6223b00

Please sign in to comment.