We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 075f0e2 commit bc0a37dCopy full SHA for bc0a37d
Makefile
@@ -10,6 +10,13 @@ init:
10
audit_fix:
11
yarn run yarn-audit-fix
12
13
+.PHONY: release_prepatch
14
+release_prepatch:
15
+ $(eval NEW_TAG := $(shell npm version prepatch))
16
+ git tag -d $(TAG)
17
+ cd katex && npm version prepatch
18
+ git reset HEAD^ && git add . && git commit -m $(NEW_TAG) && git tag $(NEW_TAG)
19
+
20
.PHONY: release_preminor
21
release_preminor:
22
$(eval NEW_TAG := $(shell npm version preminor))
0 commit comments