1
0
Fork 0

feat(build): add global link target

This commit is contained in:
ssube 2019-11-09 19:53:51 -06:00 committed by Sean Sube
parent 15bee310a5
commit f9b1a813b7
1 changed files with 4 additions and 1 deletions

View File

@ -102,7 +102,7 @@ build-docs: ## generate html docs
$(NODE_BIN)/api-documenter markdown -i $(TARGET_PATH)/api -o $(DOCS_PATH)/api
build-image: ## build a docker image
$(SCRIPT_PATH)/docker-build.sh
$(SCRIPT_PATH)/docker-build.sh --push
test: ## run mocha unit tests
test: test-cover
@ -128,6 +128,9 @@ test-watch:
yarn-install: ## install dependencies from package and lock file
yarn
yarn-global: ## install bundle as a global tool
yarn global add file:$(ROOT_PATH)
yarn-update: ## check yarn for outdated packages
yarn upgrade-interactive --latest