cfn-create-or-update
Version:
Create or update CloudFormation stack also if no updates are to be performed.
20 lines (15 loc) • 295 B
Plain Text
default: test
jshint:
@echo "jshint"
@./node_modules/.bin/jshint .
mocha:
@echo "mocha (unit test)"
@./node_modules/.bin/mocha test/*.js
@echo
coverage:
@echo "cover"
@./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/*
@echo
test: jshint mocha
@echo "test"
@echo