Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/balazsorban44/nisect
Track down which version of a package introduced a bug.
https://github.com/balazsorban44/nisect
Last synced: 14 days ago
JSON representation
Track down which version of a package introduced a bug.
- Host: GitHub
- URL: https://github.com/balazsorban44/nisect
- Owner: balazsorban44
- Created: 2023-08-22T21:23:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-13T12:41:01.000Z (about 1 year ago)
- Last Synced: 2024-10-21T05:35:28.052Z (18 days ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nisect
Track down which version of a package introduced a bug.
> Next.js + bisect = nisect. Name pending...
Inspired by [`vercel bisect`](https://vercel.com/docs/cli/bisect).
## Installation
```sh
pnpm i -g @balazsorban/nisect
```## Usage
Use it in a Next.js repository.
```
Usage: nisect [options]Options:
-D, --dev run 'next dev' (default: true)
-P, --production run 'next build && next start'
--per-page number of last releases to search in (default: "100")
-h, --help display help for command
```## Todo
- Make it work with other package managers (hardcoded to `pnpm`)
- Make it work with other packages (hardcoded to `next`)
- Let the user pass a custom command to run (currently `next dev` or `next build && next start`)