Skip to content

Commit 5dc374b

Browse files
committed
Remove objectql/metadata and update kernel package naming
Deleted objectos.config.js and server/check-tables.js, removed @objectql/metadata from dependencies, and updated all references from @objectql/metadata to @objectos/kernel in documentation. Also fixed tsconfig path in base preset. These changes align the project with the new @objectos/kernel package naming and clean up unused files.
1 parent fbb69cf commit 5dc374b

File tree

7 files changed

+9
-62
lines changed

7 files changed

+9
-62
lines changed

objectos.config.js

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

package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"@objectql/core": "^1.1.0",
4141
"@objectql/driver-knex": "^1.1.0",
4242
"@objectql/driver-mongo": "^1.1.0",
43-
"@objectql/metadata": "^0.2.0",
4443
"build": "^0.1.4"
4544
}
4645
}

packages/kernel/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @objectql/metadata
1+
# @objectos/kernel
22

33
## 0.2.0
44

packages/kernel/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# @objectql/metadata
1+
# @objectos/kernel
22

3-
The metadata management system for ObjectQL. This package provides a generic framework for discovering, loading, and managing metadata from various sources (files, npm packages, etc.).
3+
The metadata management system for ObjectOS. This package provides a generic framework for discovering, loading, and managing metadata from various sources (files, npm packages, etc.).
44

5-
While it includes plugins specifically for ObjectQL schemas (Objects, Apps, Hooks), it is designed to be extensible for any metadata-driven application.
5+
While it includes plugins specifically for ObjectOS schemas (Objects, Apps, Hooks), it is designed to be extensible for any metadata-driven application.
66

77
## Features
88

@@ -14,15 +14,15 @@ While it includes plugins specifically for ObjectQL schemas (Objects, Apps, Hook
1414
## Installation
1515

1616
```bash
17-
npm install @objectql/metadata
17+
npm install @objectos/kernel
1818
```
1919

2020
## Usage
2121

2222
### Basic Usage
2323

2424
```typescript
25-
import { MetadataRegistry, MetadataLoader } from '@objectql/metadata';
25+
import { MetadataRegistry, MetadataLoader } from '@objectos/kernel';
2626

2727
const registry = new MetadataRegistry();
2828
const loader = new MetadataLoader(registry);
@@ -49,7 +49,7 @@ const reports = registry.list('report');
4949
If you are building a system that needs to understand ObjectQL schemas without running the full ORM:
5050

5151
```typescript
52-
import { MetadataRegistry, MetadataLoader, registerObjectQLPlugins } from '@objectql/metadata';
52+
import { MetadataRegistry, MetadataLoader, registerObjectQLPlugins } from '@objectos/kernel';
5353

5454
const registry = new MetadataRegistry();
5555
const loader = new MetadataLoader(registry);
@@ -76,7 +76,7 @@ import {
7676
AppConfig,
7777
AppMenuItem,
7878
isAppMenuSection
79-
} from '@objectql/metadata';
79+
} from '@objectos/kernel';
8080

8181
const registry = new MetadataRegistry();
8282
const loader = new MetadataLoader(registry);

packages/presets/base/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": "../../../tsconfig.base.json",
33
"compilerOptions": {
44
"outDir": "./dist",
55
"rootDir": "./src"

packages/server/check-tables.js

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

0 commit comments

Comments
 (0)