From efcb5e10af6444cda2f0a89e7d3b6c87aa5d655e Mon Sep 17 00:00:00 2001 From: Darshan Date: Mon, 24 Nov 2025 11:25:53 +0530 Subject: [PATCH] bump: contributions. --- CONTRIBUTING.md | 16 +++++++++------- bunfig.toml | 5 ----- 2 files changed, 9 insertions(+), 12 deletions(-) delete mode 100644 bunfig.toml diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c7d82dbcc..e06936e6e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 diff --git a/bunfig.toml b/bunfig.toml deleted file mode 100644 index ae857b73e..000000000 --- a/bunfig.toml +++ /dev/null @@ -1,5 +0,0 @@ -# Bun configuration file -# https://bun.sh/docs/runtime/bunfig - -[test] -root = "./src" \ No newline at end of file