Skip to content

Commit

Permalink
add git push to version scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
HerbCaudill committed Dec 14, 2023
1 parent 6a83dcc commit 821e79d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"start:log": "cross-env DEBUG='lf*' DEBUG_COLORS=1 pnpm start",
"test": "vitest",
"test:log": "cross-env DEBUG='lf*' DEBUG_COLORS=1 pnpm test",
"version:alpha": "npm version prerelease --preid=alpha --yes",
"version:beta": "npm version prerelease --preid=beta --yes",
"version:patch": "npm version patch --yes",
"version:minor": "npm version minor --yes",
"version:major": "npm version major --yes"
"version:alpha": "npm version prerelease --preid=alpha && git push --follow-tagsxs",
"version:beta": "npm version prerelease --preid=beta && git push --follow-tags",
"version:patch": "npm version patch && git push --follow-tags",
"version:minor": "npm version minor && git push --follow-tags",
"version:major": "npm version major && git push --follow-tags"
},
"dependencies": {
"cuid": "^3.0.0",
Expand All @@ -56,4 +56,4 @@
"typescript": "^5.3.3",
"vitest": "^1.0.0"
}
}
}

0 comments on commit 821e79d

Please sign in to comment.