Skip to content

Commit 45f7fb8

Browse files
committed
Update repomix install check and expand doc testing API
Changed Makefile to check for repomix using 'command -v' instead of 'npm list -g'. Expanded and corrected the documentation_testing.json API definitions, adding new controller methods, fixing parameter type formatting, and improving descriptions for clarity and completeness.
1 parent e4ca7e3 commit 45f7fb8

File tree

2 files changed

+329
-109
lines changed

2 files changed

+329
-109
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ docs-quartodoc: FORCE
125125

126126
install-repomix: install-npm ## Install repomix if not already installed
127127
@echo "-------- Installing repomix if needed --------"
128-
@if ! npm list -g repomix > /dev/null 2>&1; then \
128+
@if ! command -v repomix > /dev/null 2>&1; then \
129129
echo "Installing repomix..."; \
130130
npm install -g repomix; \
131131
else \

0 commit comments

Comments
 (0)