Skip to content

Commit affda40

Browse files
Copilothotlong
andcommitted
deprecate @objectql/core: migrate all imports to @objectstack/objectql
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 904a632 commit affda40

30 files changed

Lines changed: 48 additions & 42 deletions

File tree

examples/drivers/fs-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "ts-node src/index.ts"
99
},
1010
"dependencies": {
11-
"@objectql/core": "workspace:*",
11+
"@objectstack/objectql": "^3.0.4",
1212
"@objectql/driver-fs": "workspace:*"
1313
},
1414
"devDependencies": {

examples/drivers/fs-demo/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9-
import { ObjectQL } from '@objectql/core';
9+
import { ObjectQL } from '@objectstack/objectql';
1010
import { FileSystemDriver } from '@objectql/driver-fs';
1111
import * as path from 'path';
1212

examples/integrations/browser/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ <h2>🖥️ Console Output</h2>
205205
</div>
206206

207207
<script type="module">
208-
import { ObjectQL } from '@objectql/core';
208+
import { ObjectQL } from '@objectstack/objectql';
209209
import { MemoryDriver } from '@objectql/driver-memory';
210210

211211
// Global variables

examples/integrations/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@objectql/core": "workspace:*",
13+
"@objectstack/objectql": "^3.0.4",
1414
"@objectql/driver-memory": "workspace:*",
1515
"@objectql/types": "workspace:*"
1616
},

examples/integrations/browser/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default defineConfig({
2323
optimizeDeps: {
2424
include: [
2525
'@objectql/types',
26-
'@objectql/core',
26+
'@objectstack/objectql',
2727
'@objectql/driver-memory'
2828
]
2929
},

examples/integrations/express-server/__tests__/metadata-loading.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Tests that metadata files are correctly loaded and registered
1313
*/
1414

15-
import { ObjectQL } from '@objectql/core';
15+
import { ObjectQL } from '@objectstack/objectql';
1616
import { SqlDriver } from '@objectql/driver-sql';
1717
import { ObjectLoader } from '@objectql/platform-node';
1818
import * as path from 'path';

examples/integrations/express-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"test": "vitest run"
2727
},
2828
"dependencies": {
29-
"@objectql/core": "workspace:*",
29+
"@objectstack/objectql": "^3.0.4",
3030
"@objectql/driver-sql": "workspace:*",
3131
"@objectql/platform-node": "workspace:*",
3232
"sqlite3": "^5.1.7"

examples/quickstart/hello-world/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"start": "ts-node src/index.ts"
1313
},
1414
"dependencies": {
15-
"@objectql/core": "workspace:*",
15+
"@objectstack/objectql": "^3.0.4",
1616
"@objectql/driver-sql": "workspace:*",
1717
"sqlite3": "^5.1.7"
1818
},

examples/quickstart/hello-world/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9-
import { ObjectQL } from '@objectql/core';
9+
import { ObjectQL } from '@objectstack/objectql';
1010
import { SqlDriver } from '@objectql/driver-sql';
1111

1212
async function main() {

examples/showcase/enterprise-erp/__tests__/data-api.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Tests CRUD operations for enterprise objects
1313
*/
1414

15-
import { ObjectQL } from '@objectql/core';
15+
import { ObjectQL } from '@objectstack/objectql';
1616
import { SqlDriver } from '@objectql/driver-sql';
1717
import { ObjectLoader } from '@objectql/platform-node';
1818
import * as path from 'path';

0 commit comments

Comments
 (0)