Website/node_modules/metalsmith-in-place/Makefile
2015-12-02 18:21:44 -05:00

12 lines
220 B
Makefile

eslint=node_modules/.bin/eslint lib/**/*.js test/*.js
mocha=node_modules/.bin/mocha --reporter spec --harmony-generators
node_modules: package.json
@npm install
test: node_modules
@$(mocha)
@$(eslint)
.PHONY: test