FaC: Das alte Flag von Terminen, die in die Zeiterfassung übernommen worden sind, wird ebenfalls berücksichtigt.
21 lines
277 B
Makefile
21 lines
277 B
Makefile
VERSION=0.0.6
|
|
SRC=lib/cryo.js
|
|
DEV=build/cryo-$(VERSION).js
|
|
|
|
setup:
|
|
npm install
|
|
|
|
test:
|
|
node_modules/.bin/mocha -R spec --bail ./test/*.test.js
|
|
open test/browser.html
|
|
|
|
build:
|
|
@echo "Development: $(DEV)"
|
|
|
|
@cat $(SRC) > $(DEV)
|
|
|
|
publish:
|
|
npm publish
|
|
|
|
.PHONY: setup test build
|