-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from token-js/sg/contributing
docs: add contributing guide
- Loading branch information
Showing
3 changed files
with
35 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Contributing to Token.js | ||
|
||
Thanks for your interest in improving Token.js! | ||
|
||
We appreciate support in the following areas: | ||
- Reporting issues. If you notice any bugs or have suggestions for new features, please [open an issue](https://github.com/token-js/token.js/issues/new). | ||
- Fixing and responding to existing issues. You can start off with those tagged ["good first issue"](https://github.com/token-js/token.js/labels/good%20first%20issue), which are meant as introductory issues for external contributors. | ||
|
||
## Development Quickstart | ||
|
||
### Clone the repo | ||
|
||
```bash | ||
git clone https://github.com/token-js/token-js.git | ||
``` | ||
|
||
### Open the project and install the dependencies | ||
|
||
```bash | ||
cd llm && pnpm install | ||
``` | ||
|
||
### Test your changes | ||
|
||
```bash | ||
pnpm test | ||
``` | ||
|
||
### Run the linter | ||
|
||
```bash | ||
pnpm lint | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters