Skip to content

Instantly share code, notes, and snippets.

@masahirompp
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masahirompp/8eadfc29df55b5988cf6 to your computer and use it in GitHub Desktop.
Save masahirompp/8eadfc29df55b5988cf6 to your computer and use it in GitHub Desktop.
makefile
BIN = ./node_modules/.bin
build: install typings
$(BIN)/webpack
watch: install typings
$(BIN)/webpack --watch
install:
@npm install
typings: tsd.json
@$(BIN)/tsd install
clean:
rm -f bundle.js bundle.js.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment