UNPKG

unexpected

Version:
66 lines (49 loc) 1.86 kB
REPORTER = dot TARGETS ?= unexpected.js lint: @./node_modules/.bin/jshint --exclude test/documentation.spec.js lib/*.js test/*.js .PHONY: lint unexpected.js: lib/* (echo '/*!' && <LICENSE sed -e's/^/ * /' | sed -e's/\s+$$//' && echo ' */' && ./node_modules/.bin/browserify -p bundle-collapser/plugin -e lib -s weknowhow.expect) > $@ .PHONY: unexpected.js test-phantomjs: ${TARGETS} @$(eval QUERY=$(shell node -e "console.log(decodeURIComponent(process.argv.pop()))" "${grep}")) \ ./node_modules/.bin/mocha-phantomjs test/tests.html?grep=${QUERY} test: lint mocha .PHONY: test coverage: lib/* NODE_ENV=development ./node_modules/.bin/istanbul cover \ -x unexpected.js \ -x **/vendor/** \ -x **/site/** \ -x **/documentation/** \ --include-all-sources ./node_modules/mocha/bin/_mocha -- --reporter dot .PHONY: test-browser test-browser: unexpected.js @./node_modules/.bin/serve . travis: lint test coverage <coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js .PHONY: git-dirty-check git-dirty-check: ifneq ($(shell git describe --always --dirty | grep -- -dirty),) $(error Working tree is dirty, please commit or stash your changes, then try again) endif .PHONY: release-% release-%: site-build git-dirty-check lint ${TARGETS} test-phantomjs if [ "`git status --porcelain site-build`" != "" ]; then \ (cd site-build && git add -A . && git commit -m "Updated site" && git push origin master) ; \ fi git add unexpected.js site-build && git commit -m "Build unexpected.js and site" npm version $* @echo $* release ready to be publised to NPM @echo Remember to push tags .PHONY: clean clean: -rm -fr ${TARGETS} coverage site-build: $(shell find ./documentation/ -type f) $(shell find ./site/ -type f) -rm -fr site-build node site/build.js .PHONY: update-examples update-examples: node site/update-examples.js