Skip to content

Commit d871fdf

Browse files
authored
Merge pull request #3 from NeaByteLab/chore/release-1.1.0
chore(release): bump version to 1.1.0 🔖
2 parents 3e62759 + c66bdba commit d871fdf

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,23 @@ const firstJohn = db.where('name = John').first()
6868
npm run build
6969
```
7070

71+
## Testing
72+
73+
**Type check** — format, lint, and type-check:
74+
75+
```bash
76+
deno task check
77+
```
78+
79+
**Unit tests** — format/lint tests and run all tests:
80+
81+
```bash
82+
deno task test
83+
```
84+
85+
- Tests live under `tests/` (public API tests in `tests/jsonary.test.ts`).
86+
- The test task uses `--allow-read`, `--allow-write`, and `--allow-env`.
87+
7188
## License
7289

7390
This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for details.

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@neabyte/jsonary",
33
"description": "File-based JSON database for TypeScript, with a simple query builder",
4-
"version": "1.0.1",
4+
"version": "1.1.0",
55
"type": "module",
66
"license": "MIT",
77
"exports": "./src/index.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neabyte/jsonary",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "File-based JSON database for TypeScript, with a simple query builder",
55
"type": "module",
66
"main": "dist/index.cjs",

0 commit comments

Comments
 (0)