Skip to content

Instantly share code, notes, and snippets.

@risyasin
Forked from kvz/Makefile
Created January 12, 2016 12:33
Show Gist options
  • Save risyasin/8f88a7fca63bebb95be2 to your computer and use it in GitHub Desktop.
Save risyasin/8f88a7fca63bebb95be2 to your computer and use it in GitHub Desktop.
The only Makefile for Node.js projects you'll ever need - https://twitter.com/kvz/status/685853830425231361
# Licensed under MIT.
# Copyright (2016) by Kevin van Zonneveld https://twitter.com/kvz
#
# This Makefile offers convience shortcuts into any Node.js project that utilizes npm scripts.
# It functions as a wrapper around the actual listed in `package.json`
# So instead of typing:
#
# $ npm script build:assets
#
# you could just as well type:
#
# $ make build-assets
#
# Notice that colons (:) are replaced by dashes (-) for Makefile compatibility.
#
# The benefits of this wrapper are that:
#
# - You get to keep the the scripts package.json, which is more portable
# (Makefiles aren't Windows friendly)
# - Offer a polite way into the project for developers coming from Unix/C-type environments
# (npm scripts is obviously very Node centric)
# - Profit from better autocomplete (make <TAB><TAB>) than npm currently offers.
# (OSX users will have to install bash-completion http://davidalger.com/development/bash-completion-on-os-x-with-brew/)
# - You won't have to duplicate logic, this Makefile automatically reflects the latest scripts that package.json has to offer
define npm_script_targets
TARGETS := $(shell node -e 'for (var k in require("./package.json").scripts) {console.log(k.replace(/:/g, "-"));}')
$$(TARGETS):
npm run $(subst -,:,$(MAKECMDGOALS))
.PHONY: $$(TARGETS)
endef
$(eval $(call npm_script_targets))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment