27 lines
617 B
Plaintext
27 lines
617 B
Plaintext
# Install Node dependencies for repository tools.
|
|
npm-install:
|
|
npm install --prefix tools/mcp-bridge
|
|
|
|
# Build Node-based repository tools.
|
|
npm-build:
|
|
npm run build --prefix tools/mcp-bridge
|
|
|
|
# Check Node-based repository tools.
|
|
npm-check:
|
|
npm run check --prefix tools/mcp-bridge
|
|
|
|
# Run Node-based tool tests.
|
|
npm-test:
|
|
npm test --prefix tools/mcp-bridge
|
|
|
|
# Run Node-based tool integration tests.
|
|
npm-test-integration:
|
|
npm run test:integration --prefix tools/mcp-bridge
|
|
|
|
# Run Node-based tool CI.
|
|
npm-ci:
|
|
npm run test:ci --prefix tools/mcp-bridge
|
|
|
|
# Build generated artifacts.
|
|
build: npm-build
|