Skip to content

Commit 5e4eb6b

Browse files
committed
add to all pnpm commands
1 parent 26a43a9 commit 5e4eb6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ deps-tools: ## install tool dependencies
852852
wait
853853

854854
node_modules: pnpm-lock.yaml
855-
pnpm install --frozen-lockfile
855+
$(NODE_VARS) pnpm install --frozen-lockfile
856856
@touch node_modules
857857

858858
.venv: uv.lock
@@ -866,9 +866,9 @@ update: update-js update-py ## update js and py dependencies
866866
update-js: node-check | node_modules ## update js dependencies
867867
$(NODE_VARS) pnpm exec updates -u -f package.json
868868
rm -rf node_modules pnpm-lock.yaml
869-
pnpm install
869+
$(NODE_VARS) pnpm install
870870
$(NODE_VARS) pnpm exec nolyfill install
871-
pnpm install
871+
$(NODE_VARS) pnpm install
872872
@touch node_modules
873873

874874
.PHONY: update-py
@@ -905,7 +905,7 @@ svg-check: svg
905905

906906
.PHONY: lockfile-check
907907
lockfile-check:
908-
pnpm install --frozen-lockfile
908+
$(NODE_VARS) pnpm install --frozen-lockfile
909909
@diff=$$(git diff --color=always pnpm-lock.yaml); \
910910
if [ -n "$$diff" ]; then \
911911
echo "pnpm-lock.yaml is inconsistent with package.json"; \

0 commit comments

Comments
 (0)