Skip to content

Commit

Permalink
feat(infrastructure): default install target uses a frozen lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
plouc committed May 13, 2023
1 parent 07c4954 commit 911010f
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 @@ -44,7 +44,7 @@ help: ##prints help

.PHONY: install
install: ##@0 global install
@pnpm install
@pnpm install --frozen-lockfile

.PHONY: init
init: ##@0 global cleanup/install/bootstrap
Expand Down Expand Up @@ -169,7 +169,7 @@ pkgs-build: pkgs-types ##@1 packages build all packages
@# Skipping type generation as it's already done via `pkgs-types` in one go.
@export SKIP_TYPES=TRUE; find ./packages -type d -maxdepth 1 ! -path ./packages \
| sed 's|^./packages/||' \
| xargs -P 8 -I '{}' sh -c '$(MAKE) pkg-build-{} || exit 255'
| xargs -I '{}' sh -c '$(MAKE) pkg-build-{} || exit 255'
@echo "${GREEN}Packages built${RESET}"

.PHONY: pkgs-types
Expand Down

0 comments on commit 911010f

Please sign in to comment.