Skip to content

Commit

Permalink
feat: conditionally install npm/node
Browse files Browse the repository at this point in the history
  • Loading branch information
cofin committed Nov 30, 2024
1 parent 7269ee5 commit 0584d31
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ install: destroy clean ## Install the project, dependencies, and pre-comm
@uv python pin 3.12
@uv venv
@uv sync --all-extras --dev
@uvx nodeenv .venv --force --quiet
@if ! command -v npm >/dev/null 2>&1; then \
uvx nodeenv .venv --force --quiet; \
fi
@npm install
@echo "=> Install complete!"

Expand Down

0 comments on commit 0584d31

Please sign in to comment.