Skip to content

Instantly share code, notes, and snippets.

@aromanyuk
aromanyuk / Makefile
Created April 14, 2016 21:51 — forked from srquinn21/Makefile
Frontend Development with Makefile
#==========================================================
# Environment/Configuration
#==========================================================
# For project consistency, its better to depend on npm binaries loaded locally than
# globally, so we add .node_modules/.bin to the path for shorthand references. This
# means you should add any binaries you need to "devDependencies" in package.json.
export PATH := ./node_modules/.bin/:$(PATH)
# Pull in the name and version from package.json. The name will default to "app" if not set.