chore(config): add git push step to release script

This commit is contained in:
2026-04-22 12:00:56 -04:00
parent a85b3f1c1e
commit 1a46254221
+1 -1
View File
@@ -22,7 +22,7 @@
"build": "tsup && npm run build:css",
"build:css": "mkdir -p ./dist/shared/styles ./dist/shared/fonts && cp ./src/shared/styles/zen.css ./dist/shared/styles/zen.css && cp -r ./src/shared/fonts/. ./dist/shared/fonts/",
"prepublishOnly": "npm run build",
"release": "npm version patch --no-git-tag-version && npm i && git add package.json package-lock.json && git commit -m \"chore: bump version to $(node -p \"require('./package.json').version\")\" && npm publish"
"release": "npm version patch --no-git-tag-version && npm i && git add package.json package-lock.json && git commit -m \"chore: bump version to $(node -p \"require('./package.json').version\")\" && git push && npm publish"
},
"bin": {
"zen-db": "./dist/core/database/cli.js"