cylon/Makefile

31 lines
732 B
Makefile
Raw Normal View History

2014-02-27 22:44:53 +08:00
BIN := ./node_modules/.bin
2015-03-25 09:56:53 +08:00
FILES := $(shell find lib spec/lib examples -type f -name "*.js")
TEST_FILES := spec/helper.js $(shell find spec/lib -type f -name "*.js")
2014-02-27 22:44:53 +08:00
VERSION := $(shell node -e "console.log(require('./package.json').version)")
2015-01-02 02:09:27 +08:00
.PHONY: default cover test bdd lint ci release
2014-05-22 10:35:09 +08:00
2015-01-02 02:09:27 +08:00
default: lint test
test:
2014-10-21 05:38:41 +08:00
@$(BIN)/mocha --colors -R dot $(TEST_FILES)
2014-02-27 22:44:53 +08:00
2015-01-02 02:09:27 +08:00
bdd:
@$(BIN)/mocha --colors -R spec $(TEST_FILES)
2014-02-27 22:44:53 +08:00
cover:
@istanbul cover $(BIN)/_mocha $(TEST_FILES) --report lcovonly -- -R spec
2014-02-27 22:44:53 +08:00
lint:
@jshint $(FILES)
ci: lint cover
release: lint test
@git push origin master
@git checkout release ; git merge master ; git push ; git checkout master
@git tag -m "$(VERSION)" v$(VERSION)
@git push --tags
@npm publish ./