mirror of
https://github.com/vale981/metalsmith-layouts
synced 2025-03-05 09:31:39 -05:00
11 lines
225 B
Makefile
11 lines
225 B
Makefile
eslint=node_modules/.bin/eslint lib/index.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
|