koa-lite/Makefile
TJ Holowaychuk 29687cb253 add linting
left out of test for now since it seems to barf on *
2014-05-16 09:23:00 -07:00

19 lines
294 B
Makefile

SRC = lib/*.js
include node_modules/make-lint/index.mk
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--harmony-generators \
test/application \
test/context/* \
test/request/* \
test/response/* \
--bail
bench:
@$(MAKE) -C benchmarks
.PHONY: test bench