22 строки
911 B
Makefile
22 строки
911 B
Makefile
# This Makefile is a wrapper around the scripts from `package.json`.
|
|
# https://github.com/lgarron/Makefile-scripts
|
|
|
|
# Note: the first command becomes the default `make` target.
|
|
NPM_COMMANDS = build build-js build-types build-pages dev clean test lint format prepack postpublish
|
|
|
|
.PHONY: $(NPM_COMMANDS)
|
|
$(NPM_COMMANDS):
|
|
npm run $@
|
|
|
|
# We write the npm commands to the top of the file above to make shell autocompletion work in more places.
|
|
DYNAMIC_NPM_COMMANDS = $(shell node -e 'console.log(Object.keys(require("./package.json").scripts).join(" "))')
|
|
UPDATE_MAKEFILE_SED_ARGS = "s/^NPM_COMMANDS = .*$$/NPM_COMMANDS = ${DYNAMIC_NPM_COMMANDS}/" Makefile
|
|
.PHONY: update-Makefile
|
|
update-Makefile:
|
|
if [ "$(shell uname -s)" = "Darwin" ] ; then sed -i "" ${UPDATE_MAKEFILE_SED_ARGS} ; fi
|
|
if [ "$(shell uname -s)" != "Darwin" ] ; then sed -i"" ${UPDATE_MAKEFILE_SED_ARGS} ; fi
|
|
|
|
.PHONY: publish
|
|
publish:
|
|
npm publish
|