Skip to content
Open
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
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,30 @@ This is error text.

## Contributing

### Prerequisites

- [Node.js](https://nodejs.org/)
- [Bun](https://bun.sh/)

See the Node.js and Bun entries in `.tool-versions` for the exact versions used in this project.

### Setup

```sh
bun install
```

### Commands

```sh
bun test # run tests

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm planning to drop vitest dependency for bun:test in #12 so let's just wait a bit see if it's accepted.

bun run build # build the package
bun run tsc # type check
bun run ci # lint and format check
```

### Workflow

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
Expand Down
Loading