bigal 15.11.11 → 15.11.12
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/.husky/pre-commit +2 -2
- package/CHANGELOG.md +2 -0
- package/CLAUDE.md +4 -4
- package/docs/package.json +2 -1
- package/docs/pnpm-lock.yaml +2338 -0
- package/docs/pnpm-workspace.yaml +3 -0
- package/package.json +6 -10
- package/pnpm-workspace.yaml +8 -0
- package/release.config.mjs +1 -1
- package/docs/package-lock.json +0 -3820
package/.husky/pre-commit
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
PATH=$PATH:/usr/local/bin:/opt/homebrew/bin
|
|
2
2
|
|
|
3
|
-
echo 'NOTE: If node or
|
|
4
|
-
|
|
3
|
+
echo 'NOTE: If node or pnpm is not found, you may need to run brew link for your specific node version'
|
|
4
|
+
pnpm run lint-staged
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## [15.11.12](https://github.com/bigalorm/bigal/compare/v15.11.11...v15.11.12) (2026-07-11)
|
|
2
|
+
|
|
1
3
|
## [15.11.11](https://github.com/bigalorm/bigal/compare/v15.11.10...v15.11.11) (2026-07-11)
|
|
2
4
|
|
|
3
5
|
## [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 unbuild
|
|
18
|
+
pnpm test # Type-check and run all tests with Vitest
|
|
19
|
+
pnpm run lint # Run oxlint, oxfmt, and markdownlint
|
|
20
|
+
pnpm run check:types # Type-check without emitting files (tsgo --noEmit --skipLibCheck)
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Code Style Guidelines
|
package/docs/package.json
CHANGED
|
@@ -10,5 +10,6 @@
|
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"vitepress": "1.6.4",
|
|
12
12
|
"vitepress-plugin-llms": "1.12.2"
|
|
13
|
-
}
|
|
13
|
+
},
|
|
14
|
+
"packageManager": "pnpm@11.11.0+sha512.4463f65fd80ed80d69bc1d4bf163ee94f605c7380fc318bb5b2ebe15f8cd12d49c51a4d59e951b401e764d3b6ca751cbf51bc50ed7001a6bcb4935e684c34882"
|
|
14
15
|
}
|