File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -852,7 +852,7 @@ deps-tools: ## install tool dependencies
852852 wait
853853
854854node_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
866866update-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
907907lockfile-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" ; \
You can’t perform that action at this time.
0 commit comments