|
| 1 | +diff --git a/dist/engine.js b/dist/engine.js |
| 2 | +index 4299ac8abcdbb8509b886b6b82f797d918ba58a2..78892252d84828d4181615648d414285c31015aa 100644 |
| 3 | +--- a/dist/engine.js |
| 4 | ++++ b/dist/engine.js |
| 5 | +@@ -1,4 +1,4 @@ |
| 6 | +-import { SchemaRegistry } from './registry'; |
| 7 | ++import { SchemaRegistry } from './registry.js'; |
| 8 | + /** |
| 9 | + * ObjectQL Engine |
| 10 | + * |
| 11 | +diff --git a/dist/index.js b/dist/index.js |
| 12 | +index d73fffe7e74fa7cd88064863063d47ba8a2c9791..756efa2a2bca303cbb031e49ed4cd36fbd471dde 100644 |
| 13 | +--- a/dist/index.js |
| 14 | ++++ b/dist/index.js |
| 15 | +@@ -1,9 +1,9 @@ |
| 16 | + // Export Registry |
| 17 | +-export { SchemaRegistry } from './registry'; |
| 18 | ++export { SchemaRegistry } from './registry.js'; |
| 19 | + // Export Protocol Implementation |
| 20 | +-export { ObjectStackProtocolImplementation } from './protocol'; |
| 21 | ++export { ObjectStackProtocolImplementation } from './protocol.js'; |
| 22 | + // Export Engine |
| 23 | +-export { ObjectQL } from './engine'; |
| 24 | ++export { ObjectQL } from './engine.js'; |
| 25 | + // Export Plugin Shim |
| 26 | +-export { ObjectQLPlugin } from './plugin'; |
| 27 | ++export { ObjectQLPlugin } from './plugin.js'; |
| 28 | + // Moved logic to engine.ts |
| 29 | +diff --git a/dist/plugin.js b/dist/plugin.js |
| 30 | +index d64ba1e8d60cb58ce26cee76555e975bb02cc04c..aa58449a4f6cbe3183a2c7db8603eb685d95f615 100644 |
| 31 | +--- a/dist/plugin.js |
| 32 | ++++ b/dist/plugin.js |
| 33 | +@@ -1,5 +1,5 @@ |
| 34 | +-import { ObjectQL } from './engine'; |
| 35 | +-import { ObjectStackProtocolImplementation } from './protocol'; |
| 36 | ++import { ObjectQL } from './engine.js'; |
| 37 | ++import { ObjectStackProtocolImplementation } from './protocol.js'; |
| 38 | + export class ObjectQLPlugin { |
| 39 | + constructor(ql, hostContext) { |
| 40 | + this.name = 'com.objectstack.engine.objectql'; |
| 41 | +diff --git a/dist/protocol.js b/dist/protocol.js |
| 42 | +index baf99313260c07734ebcaae8d61a2054feb74d4b..d7967c8e066f1b07c4cc800c1bd11909cf70e69b 100644 |
| 43 | +--- a/dist/protocol.js |
| 44 | ++++ b/dist/protocol.js |
| 45 | +@@ -1,5 +1,5 @@ |
| 46 | + // We import SchemaRegistry directly since this class lives in the same package |
| 47 | +-import { SchemaRegistry } from './registry'; |
| 48 | ++import { SchemaRegistry } from './registry.js'; |
| 49 | + export class ObjectStackProtocolImplementation { |
| 50 | + constructor(engine) { |
| 51 | + this.engine = engine; |
| 52 | +diff --git a/package.json b/package.json |
| 53 | +index ac3f9a0bc646f9e6e9f6e37577a49832a4a2b4a2..9badd29dfbfdbf1c2708416dde69a065e9607585 100644 |
| 54 | +--- a/package.json |
| 55 | ++++ b/package.json |
| 56 | +@@ -2,8 +2,8 @@ |
| 57 | + "name": "@objectstack/objectql", |
| 58 | + "version": "0.6.1", |
| 59 | + "description": "Isomorphic ObjectQL Engine for ObjectStack", |
| 60 | +- "main": "src/index.ts", |
| 61 | +- "types": "src/index.ts", |
| 62 | ++ "main": "dist/index.js", |
| 63 | ++ "types": "dist/index.d.ts", |
| 64 | + "dependencies": { |
| 65 | + "@objectstack/core": "0.6.1", |
| 66 | + "@objectstack/spec": "0.6.1", |
0 commit comments