Skip to content

Commit

Permalink
chore(cli): Remove cli:test:src script (#277)
Browse files Browse the repository at this point in the history
Is currently broken, see
#276
  • Loading branch information
rmarescu authored Jan 17, 2025
1 parent c6c37f6 commit 565db32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 .",
Expand Down

0 comments on commit 565db32

Please sign in to comment.