orez 0.16.13 → 0.16.14
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/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orez",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.14",
|
|
4
4
|
"description": "PGlite-powered zero-sync development backend. No Docker required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"dist"
|
|
48
48
|
],
|
|
49
49
|
"scripts": {
|
|
50
|
-
"build": "rm -rf dist && bun run --cwd packages/orez-lite build && tsc && bun run --cwd packages/drizzle-zero-sqlite build && bun run --cwd packages/on-zero build && bun run --cwd packages/database build && chmod +x dist/cli-entry.js",
|
|
50
|
+
"build": "rm -rf dist && bun run --cwd packages/orez-lite build && tsc && bun run --cwd packages/drizzle-zero-sqlite build && bun run --cwd packages/on-zero build && bun run --cwd packages/database build && bun run --cwd packages/helpers build && bun run --cwd packages/env build && bun run --cwd packages/cli build && chmod +x dist/cli-entry.js",
|
|
51
51
|
"dev": "tsc --watch",
|
|
52
|
-
"test": "bun run --cwd packages/sync-executor build && bun run --cwd packages/sync-cf-host build:dist && vitest run --exclude 'src/integration/' --exclude 'src/wasm-sqlite.test.ts' && bun run test:sync-executor && bun run --cwd packages/drizzle-zero-sqlite test && bun run --cwd packages/database test",
|
|
52
|
+
"test": "bun run --cwd packages/sync-executor build && bun run --cwd packages/sync-cf-host build:dist && vitest run --exclude 'src/integration/' --exclude 'src/wasm-sqlite.test.ts' && bun run test:sync-executor && bun run --cwd packages/drizzle-zero-sqlite test && bun run --cwd packages/database test && bun run --cwd packages/helpers test && bun run --cwd packages/env test && bun run --cwd packages/cli test",
|
|
53
53
|
"test:integration": "bun run --cwd packages/sync-executor build && bun run --cwd packages/sync-cf-host build:dist && vitest run src/integration/",
|
|
54
54
|
"native:bootstrap": "bun scripts/setup-native-sqlite.ts",
|
|
55
55
|
"test:native:guard": "bun run native:bootstrap && vitest run src/integration/native-binary.guard.test.ts",
|
|
@@ -69,13 +69,14 @@
|
|
|
69
69
|
"lint": "oxlint --import-plugin --ignore-pattern sqlite-wasm/",
|
|
70
70
|
"format": "oxfmt .",
|
|
71
71
|
"format:check": "oxfmt --check .",
|
|
72
|
-
"check": "bun scripts/check-workspace-cycles.ts && bun run --cwd packages/sync-executor typecheck && bun run --cwd packages/sync-executor build && bun run --cwd packages/sync-cf-host typecheck && bun run --cwd packages/orez-lite build:runtime && tsc --noEmit && bun run --cwd packages/orez-lite typecheck && bun run --cwd packages/sync-browser-host typecheck && bun run --cwd packages/drizzle-zero-sqlite typecheck && bun run --cwd packages/database typecheck",
|
|
72
|
+
"check": "bun scripts/check-workspace-cycles.ts && bun run --cwd packages/sync-executor typecheck && bun run --cwd packages/sync-executor build && bun run --cwd packages/sync-cf-host typecheck && bun run --cwd packages/orez-lite build:runtime && tsc --noEmit && bun run --cwd packages/orez-lite typecheck && bun run --cwd packages/sync-browser-host typecheck && bun run --cwd packages/drizzle-zero-sqlite typecheck && bun run --cwd packages/database typecheck && bun run --cwd packages/helpers typecheck && bun run --cwd packages/env typecheck && bun run --cwd packages/cli typecheck",
|
|
73
73
|
"demo:test": "bun demo/src/test/run-e2e.ts",
|
|
74
74
|
"check:all": "bun run lint && bun run format:check && bun run check && bun run test",
|
|
75
75
|
"test:chat": "bun scripts/test-chat-integration.ts",
|
|
76
76
|
"test:chat:smoke": "bun scripts/test-chat-integration.ts --smoke",
|
|
77
77
|
"release": "bun scripts/release.ts",
|
|
78
78
|
"release:native:bootstrap": "bun scripts/bootstrap-sync-native-packages.ts",
|
|
79
|
+
"release:shared:bootstrap": "bun scripts/bootstrap-sync-native-packages.ts shared",
|
|
79
80
|
"perf:load": "bun run perf/load/harness.ts",
|
|
80
81
|
"perf:memory": "bun run perf/memory/profile.ts",
|
|
81
82
|
"perf:bench": "bun run perf/scripts/bench-all.ts",
|
|
@@ -91,7 +92,7 @@
|
|
|
91
92
|
"dependencies": {
|
|
92
93
|
"@electric-sql/pglite": "0.4.1",
|
|
93
94
|
"@electric-sql/pglite-tools": "^0.3.1",
|
|
94
|
-
"bedrock-sqlite": "0.16.
|
|
95
|
+
"bedrock-sqlite": "0.16.14",
|
|
95
96
|
"citty": "^0.2.0",
|
|
96
97
|
"pg-gateway": "0.3.0-beta.4",
|
|
97
98
|
"pgsql-parser": "^17.9.11",
|
|
@@ -118,8 +119,8 @@
|
|
|
118
119
|
"embedded-postgres": "17.10.0-beta.17",
|
|
119
120
|
"oxfmt": "latest",
|
|
120
121
|
"oxlint": "latest",
|
|
121
|
-
"orez-lite": "0.16.
|
|
122
|
-
"orez-sync-executor": "0.16.
|
|
122
|
+
"orez-lite": "0.16.14",
|
|
123
|
+
"orez-sync-executor": "0.16.14",
|
|
123
124
|
"pg": "8.22.0",
|
|
124
125
|
"typescript": "^5.7.0",
|
|
125
126
|
"vitest": "^3.0.0",
|