diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13854db --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: new-version +new-version: + $(if $(shell which npx),,\ + $(error No npx found in PATH, please install NodeJS)) + $(if $(shell which standard-version),,\ + $(error No standard-version found in PATH, install with: \ + npm install -g standard-version)) + + npx standard-version