We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83571a1 commit f06d459Copy full SHA for f06d459
Makefile
@@ -19,3 +19,8 @@ release:
19
format:
20
# Format the code using Prettier
21
yarn run prettier --write .
22
+
23
+publish:
24
+ # Ensure the git repository is clean
25
+ @git diff --quiet || (echo "Uncommitted changes present. Please commit or stash them before publishing." && exit 1)
26
+ git tag -a v$(VERSION) -m "Version $(VERSION)"
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@macrostrat/api-v2",
3
- "version": "2.1.0-beta.3",
+ "version": "2.1.0-beta.4",
4
"description": "An API for stratigraphic and geological information (Version 2).",
5
"main": "server.js",
6
"repository": {
0 commit comments