From dd80d990e6f05304002ed6006539f5f66f8fa4a1 Mon Sep 17 00:00:00 2001
From: Razvan Marescu <razvan@marescu.net>
Date: Thu, 16 Jan 2025 21:50:56 -0800
Subject: [PATCH] chore(cli): Remove `cli:test:src` script

---
 README.md    | 9 ++-------
 package.json | 1 -
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 61ad7803..762c90bb 100644
--- a/README.md
+++ b/README.md
@@ -377,12 +377,7 @@ Open [http://localhost:3000](http://localhost:3000) in your browser to see the a
 
 1. Make changes to the package source code in `packages/shortest/`
 
-2. Test changes instantly during development (no build needed):
-```bash
-pnpm cli:test:src -h
-```
-
-3. To test the actual built package:
+2. Build the package and test the changes:
 ```bash
 # One-time build
 pnpm cli:build
@@ -394,7 +389,7 @@ pnpm cli:dev
 pnpm shortest --help
 ```
 
-4. To test in another project:
+3. To test in another project:
 ```bash
 # In Shortest package directory
 cd packages/shortest
diff --git a/package.json b/package.json
index 03e4f914..c887bdcf 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,6 @@
     "cli:build": "cd packages/shortest && pnpm build",
     "cli:dev": "cd packages/shortest && pnpm dev",
     "cli:test": "cd packages/shortest && pnpm shortest",
-    "cli:test:src": "npx tsx packages/shortest/src/cli/bin.ts",
 
     "test": "pnpm shortest",
     "lint": "eslint .",