metalsmith-layouts/Makefile
2015-08-06 17:04:59 +02:00

11 lines
224 B
Makefile

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