diff --git a/.versionrc.json b/.versionrc.json new file mode 100644 index 0000000..f138aaa --- /dev/null +++ b/.versionrc.json @@ -0,0 +1,3 @@ +{ + "tagPrefix": "" +} \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fe08d61 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: new-version +new-version: check-npx + npx standard-version + +.PHONY: next-version +next-version: check-npx + npx standard-version --dry-run + +.PHONY: check-npx +check-npx: + $(if $(shell which npx),,\ + $(error No npx execuable found in PATH, please install NodeJS))