diff --git a/Makefile b/Makefile index f0c7de9..fdebe11 100755 --- a/Makefile +++ b/Makefile @@ -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