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.
@@ -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
- npm run build # Build the project using unbuild
18
- npm test # Type-check and run all tests with Vitest
19
- npm run lint # Run oxlint, oxfmt, and markdownlint
20
- npm run check:types # Type-check without emitting files (tsgo --noEmit --skipLibCheck)
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, and ON CONFLICT upserts.
9
+ Postgres performance with native support for JSONB, DISTINCT ON, subquery joins, ON CONFLICT upserts, and pgvector.
10
10
 
11
11
  ## Install
12
12