Skip to content

Commit

Permalink
feat(makefile): correction install
Browse files Browse the repository at this point in the history
  • Loading branch information
koromerzhin committed Feb 25, 2021
1 parent fe345e0 commit 0685745
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,14 @@ endif
help:
@grep -E '(^[a-zA-Z_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}' | sed -e 's/\[32m##/[33m/'

package-lock.json: package.json
@npm install

.PHONY: isdocker
isdocker: ## Docker is launch
ifeq ($(isDocker), 0)
@echo "Docker is not launch"
exit 1
endif

node_modules: package-lock.json
node_modules:
@npm install

dump:
Expand Down

0 comments on commit 0685745

Please sign in to comment.