Skip to content

Commit 3ce563c

Browse files
committed
fix: update test script to echo no tests and correct plugin import paths
1 parent aeaebe2 commit 3ce563c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/objectql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "src/index.ts",
77
"scripts": {
88
"build": "tsc",
9-
"test": "vitest"
9+
"test": "echo no tests"
1010
},
1111
"dependencies": {
1212
"@objectstack/core": "workspace:*",

packages/runtime/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
export { ObjectKernel } from '@objectstack/core';
33

44
// Export Plugins
5-
export { DriverPlugin } from './driver-plugin';
6-
export { AppPlugin } from './app-plugin';
5+
export { DriverPlugin } from './driver-plugin.js';
6+
export { AppPlugin } from './app-plugin.js';
77

88
// Export Types
99
export * from '@objectstack/core';

0 commit comments

Comments
 (0)