aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Donovan <[email protected]>2013-01-07 09:20:39 -0800
committerBryan Donovan <[email protected]>2013-01-07 09:20:39 -0800
commit19a65dd7135d6b5e0e482d95b208a770cf158b86 (patch)
tree6e68ce968a713547df0026303247b507d7169f3f
parent504607ff9efd3ef6244a7048ec99f63cbf075e5c (diff)
downloadfaker-19a65dd7135d6b5e0e482d95b208a770cf158b86.tar.xz
faker-19a65dd7135d6b5e0e482d95b208a770cf158b86.zip
adding make build target
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 881e8b14..b818d8bb 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,9 @@ BUSTER = ./node_modules/.bin/buster test
main: lint test
+build:
+ cd BUILD && node BUILD.js
+
cover:
$(ISTANBUL) cover test/run.js --root ./lib -- -T unit,functional
@@ -22,4 +25,4 @@ lint:
./node_modules/jshint/bin/hint ./lib --config $(BASE)/.jshintrc
-.PHONY: test
+.PHONY: test, build