Skip to content

Commit 9f43ad8

Browse files
committed
重构 ObjectQL 引擎,创建 @objectstack/runtime 包并迁移相关功能;删除旧的 objectql 示例和配置文件
1 parent 54d7fc1 commit 9f43ad8

File tree

12 files changed

+22
-147
lines changed

12 files changed

+22
-147
lines changed

examples/client-lite/index.html

Lines changed: 0 additions & 125 deletions
This file was deleted.

examples/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@objectstack/example-crm": "workspace:*",
1313
"@objectstack/example-todo": "workspace:*",
1414
"@objectstack/plugin-bi": "workspace:*",
15-
"@objectstack/objectql": "workspace:*",
15+
"@objectstack/runtime": "workspace:*",
1616
"@objectstack/plugin-driver-memory": "workspace:*",
1717
"hono": "^4.0.0",
1818
"@hono/node-server": "^1.0.0",
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@objectstack/objectql",
3-
"version": "0.0.1",
4-
"description": "ObjectQL Reference Implementation",
2+
"name": "@objectstack/runtime",
3+
"version": "0.1.0",
4+
"description": "ObjectStack Core Runtime & Query Engine",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"scripts": {

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"hono": "^4.0.0",
1212
"@hono/node-server": "^1.0.0",
13-
"@objectstack/objectql": "workspace:*",
13+
"@objectstack/runtime": "workspace:*",
1414
"@objectstack/spec": "workspace:*",
1515
"zod": "^3.0.0"
1616
},

packages/server/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { serveStatic } from '@hono/node-server/serve-static';
33
import { Hono } from 'hono';
44
import { logger } from 'hono/logger';
55
import { cors } from 'hono/cors';
6-
import { SchemaRegistry, DataEngine } from '@objectstack/objectql';
6+
import { SchemaRegistry, DataEngine } from '@objectstack/runtime';
77
import { ServerPlugin } from './plugin';
88
import { CoreRestApiPlugin } from './plugins/rest-api';
99

0 commit comments

Comments
 (0)