Skip to content

Commit

Permalink
build: only display errors for "npm ci"
Browse files Browse the repository at this point in the history
This is less restrictive than `--silent` which may just remove everything.
  • Loading branch information
vincentbernat committed Dec 11, 2023
1 parent 0c43af5 commit 638b993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ console/filter/parser.go: console/filter/parser.peg | $(PIGEON) ; $(info $(M) ge

console/frontend/node_modules: console/frontend/package.json console/frontend/package-lock.json
console/frontend/node_modules: ; $(info $(M) fetching node modules…)
$Q (cd console/frontend ; npm ci --silent --no-audit --no-fund) && touch $@
$Q (cd console/frontend ; npm ci --loglevel=error --no-audit --no-fund) && touch $@
console/data/frontend: $(GENERATED_JS)
console/data/frontend: $(shell $(LSFILES) console/frontend 2> /dev/null)
console/data/frontend: ; $(info $(M) building console frontend…)
Expand Down

0 comments on commit 638b993

Please sign in to comment.