Skip to content

Commit ebeb68f

Browse files
committed
chore(package.json): update deploy script to use 'git push --follow-tags' instead of 'git push --tags'
The deploy script in package.json has been updated to use 'git push --follow-tags' instead of 'git push --tags'. This change ensures that tags are pushed along with the commit when deploying the application.
1 parent a9f550f commit ebeb68f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"dev": "ts-node ./src/cli.ts",
4343
"build": "rimraf out && node esbuild.config.js",
4444
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
45-
"deploy": "npm run build:push && npm version patch && git push --tags && git push && npm publish --tag latest",
45+
"deploy": "npm run build:push && npm version patch && git push --follow-tags && npm publish --tag latest",
4646
"lint": "eslint src --ext ts && tsc --noEmit",
4747
"format": "prettier --write src"
4848
},

0 commit comments

Comments
 (0)