From 27ec45a87b53869a9349228304b03e284507e42d Mon Sep 17 00:00:00 2001 From: NeaByteLab <209737579+NeaByteLab@users.noreply.github.com> Date: Wed, 25 Mar 2026 16:35:15 +0700 Subject: [PATCH 1/2] =?UTF-8?q?docs(readme):=20add=20testing=20commands=20?= =?UTF-8?q?=F0=9F=93=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add `deno task check` and `deno task test` guidance - Document test location under `tests/` --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index e2c1206..fe88b3a 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,23 @@ const firstJohn = db.where('name = John').first() npm run build ``` +## Testing + +**Type check** — format, lint, and type-check: + +```bash +deno task check +``` + +**Unit tests** — format/lint tests and run all tests: + +```bash +deno task test +``` + +- Tests live under `tests/` (public API tests in `tests/jsonary.test.ts`). +- The test task uses `--allow-read`, `--allow-write`, and `--allow-env`. + ## License This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for details. From c66bdbaa16da3a315a72818cdbcbb414dfcd47d9 Mon Sep 17 00:00:00 2001 From: NeaByteLab <209737579+NeaByteLab@users.noreply.github.com> Date: Wed, 25 Mar 2026 16:35:15 +0700 Subject: [PATCH 2/2] =?UTF-8?q?chore(release):=20bump=20version=20to=201.1?= =?UTF-8?q?.0=20=F0=9F=94=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update `deno.json` version field - Update `package.json` version field --- deno.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.json b/deno.json index 508c7b2..e849ad8 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "name": "@neabyte/jsonary", "description": "File-based JSON database for TypeScript, with a simple query builder", - "version": "1.0.1", + "version": "1.1.0", "type": "module", "license": "MIT", "exports": "./src/index.ts", diff --git a/package.json b/package.json index 2d7ec83..1de6f80 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@neabyte/jsonary", - "version": "1.0.1", + "version": "1.1.0", "description": "File-based JSON database for TypeScript, with a simple query builder", "type": "module", "main": "dist/index.cjs",