diff --git a/- b/- deleted file mode 160000 index 04e18f89..00000000 --- a/- +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 04e18f892cd52cded476ccf823cc854672e002fa diff --git a/check-both.sh b/check-both.sh deleted file mode 100755 index 87857191..00000000 --- a/check-both.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash -# ─ load up your Rust/Cargo from ~/.cargo/env ─ -if [ -f "$HOME/.cargo/env" ]; then - # this is where `cargo` typically lives - source "$HOME/.cargo/env" -fi - -# now run both checks -cargo check --workspace --message-format=json "$@" -cargo check --workspace --message-format=json --features cloud "$@" - -# Add this to .vscode/settings.json to lint both cloud and non-cloud -# { -# // rust-analyzer will still do its usual code‑lens, inlay, etc. based -# // on whatever "cargo.features" you pick here (can be [] for no-features, -# // or ["foo"] for a specific feature). -# "rust-analyzer.cargo.features": "all", -# // overrideCommand must emit JSON diagnostics. We're just calling our -# // script which in turn calls cargo twice. -# "rust-analyzer.check.overrideCommand": [ -# "${workspaceFolder}/check-both.sh" -# ] -# } \ No newline at end of file diff --git a/test-npm-package.sh b/test-npm-package.sh deleted file mode 100755 index d342ea3c..00000000 --- a/test-npm-package.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash -# test-npm-package.sh - -set -e - -echo "πŸ§ͺ Testing NPM package locally..." - -# Build the package first -./build-npm-package.sh - -cd npx-cli - -echo "πŸ“‹ Checking files to be included..." -npm pack --dry-run - -echo "πŸ“¦ Creating package tarball..." -npm pack - -TARBALL=$(pwd)/$(ls vibe-kanban-*.tgz | head -n1) - -echo "πŸ§ͺ Testing main command..." -npx -y --package=$TARBALL vibe-kanban & -MAIN_PID=$! -sleep 3 -kill $MAIN_PID 2>/dev/null || true -wait $MAIN_PID 2>/dev/null || true -echo "βœ… Main app started successfully" - -echo "πŸ§ͺ Testing MCP command with complete handshake..." - -node ../scripts/mcp_test.js $TARBALL - -echo "🧹 Cleaning up..." -rm "$TARBALL" - -echo "βœ… NPM package test completed successfully!" -echo "" -echo "πŸŽ‰ Your MCP server is working correctly!" -echo "πŸ“‹ Next steps:" -echo " 1. cd npx-cli" -echo " 2. npm publish" -echo " 3. Users can then use: npx vibe-kanban --mcp with Claude Desktop" \ No newline at end of file