38 lines
950 B
Plaintext
38 lines
950 B
Plaintext
# Install Node dependencies for repository tools.
|
|
npm-install: npm-install-mcp-bridge npm-install-trap-sandbox
|
|
|
|
# Install Node dependencies for the MCP bridge.
|
|
npm-install-mcp-bridge:
|
|
npm install --prefix tools/mcp-bridge
|
|
|
|
# Install Node dependencies for trap-sandbox.
|
|
npm-install-trap-sandbox:
|
|
npm install --prefix tools/trap-sandbox/
|
|
|
|
# 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
|
|
|
|
# Run trap-sandbox CI.
|
|
npm-trap-sandbox-ci:
|
|
npm --prefix tools/trap-sandbox/ run test:ci
|
|
|
|
# Build generated artifacts.
|
|
build: npm-build
|