Permalink
Browse files

Fix Makefile for CI

1 parent c327e41 commit a6ebcec78c3dddf06fe6c2cf280c26345527a332 @brianpeiris brianpeiris committed Jan 28, 2014
Showing with 3 additions and 9 deletions.
  1. +3 −9 Makefile
View
@@ -1,17 +1,11 @@
MOCHA_OPTS= --check-leaks
REPORTER = spec
-default: test build lint
-
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
- $(MOCHA_OPTS)
-
-build:
- grunt uglify concat
-
-lint:
+ $(MOCHA_OPTS) && \
+ grunt uglify concat && \
grunt jshint
-.PHONY: test build build
+.PHONY: test

0 comments on commit a6ebcec

Please sign in to comment.