Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(cli): Remove cli:test:src script #277

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading