@housekit/orm 0.1.8 → 0.1.9

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.
Files changed (2) hide show
  1. package/dist/index.js +6753 -101
  2. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@housekit/orm",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Type-safe ClickHouse ORM with modern DX and ClickHouse-specific optimizations. Features Turbo Mode (RowBinary), full engine support, and advanced query capabilities.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -43,7 +43,7 @@
43
43
  "README.md"
44
44
  ],
45
45
  "scripts": {
46
- "build": "bun run build-worker.ts && bun build ./src/index.ts --outdir ./dist --target node --external \"*\" && tsc --project tsconfig.build.json",
46
+ "build": "bun run build-worker.ts && bun build ./src/index.ts --outdir ./dist --target node --external @clickhouse/client --external uuid --external zod && tsc --project tsconfig.build.json",
47
47
  "prepublishOnly": "bun run build",
48
48
  "clean": "rm -rf dist"
49
49
  },