Skip to content

Commit

Permalink
Makefile: use npm ci again
Browse files Browse the repository at this point in the history
  • Loading branch information
ainar-g committed Dec 24, 2020
1 parent 5acee9d commit 313b020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ GO = go
GOPROXY = https://goproxy.cn,https://goproxy.io,direct
GPG_KEY_PASSPHRASE = not-a-real-password
NPM = npm
NPM_FLAGS = --prefix="./$(CLIENT_DIR)"
NPM_FLAGS = --prefix $(CLIENT_DIR)
VERBOSE = 0
VERSION = v0.0.0

Expand Down Expand Up @@ -50,7 +50,7 @@ clean: ; $(ENV) $(SHELL) ./scripts/clean.sh
init: ; git config core.hooksPath ./.githooks

js-build: ; $(NPM) $(NPM_FLAGS) run build-prod
js-deps: ; $(NPM) $(NPM_FLAGS) install
js-deps: ; $(NPM) $(NPM_FLAGS) ci
js-lint: ; $(NPM) $(NPM_FLAGS) run lint
js-test: ; $(NPM) $(NPM_FLAGS) run test

Expand Down

0 comments on commit 313b020

Please sign in to comment.