1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-27 22:03:37 +00:00
lancedikson_bowser/Makefile
2013-12-16 06:42:26 +01:00

17 lines
244 B
Makefile

boosh:
node make/build.js
REPORTER = dot
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
test-w:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--growl \
--watch
.PHONY: test test-w