bump: contributions.

This commit is contained in:
Darshan
2025-12-31 18:42:45 +05:30
parent 86f2238b2d
commit efcb5e10af
2 changed files with 9 additions and 12 deletions
+9 -7
View File
@@ -85,7 +85,7 @@ bun run build
### Tests
```bash
bun test
bun test:unit
```
This will run tests in the `tests/` directory.
@@ -95,7 +95,7 @@ This will run tests in the `tests/` directory.
Code should be consistently formatted everywhere. Before committing code, run the code-formatter.
```bash
bun run format
bun format
```
### Linter
@@ -113,7 +113,7 @@ Diagnostic tool that checks for the following:
- TypeScript compiler errors
```bash
bun run check
bun check
```
## Submit a Pull Request 🚀
@@ -176,11 +176,13 @@ $ git push origin [name_of_your_new_branch]
Before committing always make sure to run all available tools to improve the codebase:
- Formatter
- `bun run format`
- Tests
- `bun test`
- `bun format`
- Tests (Unit)
- `bun test:unit`
- Tests (E2E)
- `bun e2e`
- Diagnostics
- `bun run check`
- `bun check`
### Performance
-5
View File
@@ -1,5 +0,0 @@
# Bun configuration file
# https://bun.sh/docs/runtime/bunfig
[test]
root = "./src"