Skip to content

Commit

Permalink
Makefile: only include production dependencies in yarn audits (#1928)
Browse files Browse the repository at this point in the history
Signed-off-by: Kent Rancourt <kent.rancourt@microsoft.com>
  • Loading branch information
krancour authored Apr 14, 2022
1 parent c6e38c2 commit 1250e69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,13 @@ yarn-audit:
$(JS_DOCKER_CMD) sh -c ' \
cd v2/brigadier && \
yarn install && \
yarn audit && \
yarn audit --groups dependencies && \
cd ../brigadier-polyfill && \
yarn install && \
yarn audit && \
yarn audit --groups dependencies && \
cd ../worker && \
yarn install && \
yarn audit \
yarn audit --groups dependencies \
'

.PHONY: clean-js
Expand Down

0 comments on commit 1250e69

Please sign in to comment.