mirror of
https://github.com/koajs/examples.git
synced 2026-01-18 14:38:19 +00:00
12 lines
174 B
Makefile
12 lines
174 B
Makefile
lint:
|
|
@./node_modules/.bin/eslint .
|
|
|
|
test:
|
|
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
--harmony \
|
|
--reporter spec \
|
|
--require should \
|
|
*/test.js
|
|
|
|
.PHONY: lint test
|