-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add some basic documentation to the README. (#23)
- Loading branch information
Showing
2 changed files
with
220 additions
and
19 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,31 @@ | ||
# Contributing | ||
|
||
## ⚙️ Developing the library | ||
|
||
### 📦 Building | ||
|
||
```bash | ||
pnpm build | ||
``` | ||
|
||
### 🧪 Testing | ||
|
||
If you want to run the tests of the project, you can execute the following command: | ||
|
||
```bash | ||
pnpm test | ||
``` | ||
|
||
### 💅 Linting | ||
|
||
To run the linter you can execute: | ||
|
||
```bash | ||
pnpm lint | ||
``` | ||
|
||
And for trying to fix lint issues automatically, you can run: | ||
|
||
```bash | ||
pnpm lint:fix | ||
``` |
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