bigal 15.11.11 → 15.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vite-hooks/pre-commit +1 -0
- package/CHANGELOG.md +4 -0
- package/CLAUDE.md +4 -4
- package/README.md +1 -1
- package/dist/index.cjs +3213 -3836
- package/dist/index.d.cts +1382 -1248
- package/dist/index.d.mts +1382 -1248
- package/dist/index.mjs +3212 -3834
- package/docs/guide/crud-operations.md +14 -0
- package/docs/guide/models.md +27 -10
- package/docs/guide/querying.md +67 -0
- package/docs/package.json +3 -2
- package/docs/pnpm-lock.yaml +2338 -0
- package/docs/pnpm-workspace.yaml +3 -0
- package/docs/reference/api.md +38 -1
- package/package.json +58 -76
- package/pnpm-workspace.yaml +14 -0
- package/release.config.mjs +1 -1
- package/skills/using-bigal/SKILL.md +53 -1
- package/vite.config.ts +83 -0
- package/.husky/pre-commit +0 -4
- package/.oxfmtrc.json +0 -38
- package/.oxlintrc.json +0 -220
- package/dist/index.d.ts +0 -1479
- package/docs/package-lock.json +0 -3820
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vp staged
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [15.12.0](https://github.com/bigalorm/bigal/compare/v15.11.12...v15.12.0) (2026-07-12)
|
|
2
|
+
|
|
3
|
+
## [15.11.12](https://github.com/bigalorm/bigal/compare/v15.11.11...v15.11.12) (2026-07-11)
|
|
4
|
+
|
|
1
5
|
## [15.11.11](https://github.com/bigalorm/bigal/compare/v15.11.10...v15.11.11) (2026-07-11)
|
|
2
6
|
|
|
3
7
|
## [15.11.10](https://github.com/bigalorm/bigal/compare/v15.11.9...v15.11.10) (2026-06-09)
|
package/CLAUDE.md
CHANGED
|
@@ -14,10 +14,10 @@ BigAl is a type-safe PostgreSQL ORM for Node.js/TypeScript. It uses a fluent bui
|
|
|
14
14
|
## Build and Test Commands
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
pnpm run build # Build the project using vp pack (Vite+)
|
|
18
|
+
pnpm test # Type-check and run all tests with Vitest
|
|
19
|
+
pnpm run lint # Run vp fmt, vp lint, and markdownlint
|
|
20
|
+
pnpm run check:types # Type-check without emitting files (tsc --noEmit --skipLibCheck)
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Code Style Guidelines
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
A PostgreSQL-optimized, type-safe TypeScript ORM for Node.js. BigAl uses a fluent builder pattern for queries,
|
|
8
8
|
decorator-based models, and immutable query state. Built exclusively for Postgres — queries are tuned for
|
|
9
|
-
Postgres performance with native support for JSONB, DISTINCT ON, subquery joins,
|
|
9
|
+
Postgres performance with native support for JSONB, DISTINCT ON, subquery joins, ON CONFLICT upserts, and pgvector.
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|