propdoc
Version:
quick and easy documentation of Vue.js components
33 lines (22 loc) • 596 B
Plain Text
.PHONY: all test ci-test release help lint
all: ## Run test and release below
all: ci-test release
help: ## Show this help
ci-test: lint
test: ## Run linter and all tests
test: lint
lint: ## Run linter
release: ## Create a release of js and css in the lib folder
push-to-npm:
npm publish
cleanup-lib:
rm -rf lib
publish: all push-to-npm cleanup-lib
bump:
npm version patch