feat(build): add global link target
This commit is contained in:
parent
15bee310a5
commit
f9b1a813b7
5
Makefile
5
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue