Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,10 @@ docs-install-deps:
exit 1; \
fi
@if [ ! -f package.json ]; then \
echo "Creating package.json..."; \
npm init -y; \
echo " package.json not found. Cannot install dependencies."; \
exit 1; \
fi
@echo "Installing HTML validation tools..."
@npm install html-validate
@echo "Installing CSS validation tools..."
@npm install stylelint stylelint-config-standard
@echo "Installing link checking tools..."
@npm install markdown-link-check
@echo "Installing all dependencies from package.json..."
@npm install
@echo "✅ All docs dependencies installed successfully!"
@echo "Tools installed in ./node_modules/.bin/"
Loading