mirror of
https://github.com/jimeh/build-emacs-for-macos.git
synced 2026-02-19 13:06:38 +00:00
13 lines
267 B
Makefile
13 lines
267 B
Makefile
.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))
|