Skip to content

Commit 88908c0

Browse files
authored
Merge pull request #348 from objectstack-ai/copilot/fix-issue-in-action-run-again
2 parents 296e1d2 + ec58565 commit 88908c0

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/core/src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9-
export * from './types/index.js';
9+
export type * from './types';
1010
export * from './registry/Registry.js';
1111
export * from './registry/PluginSystem.js';
1212
export * from './registry/PluginScopeImpl.js';
13-
export * from './validation/index.js';
13+
export * from './validation';
1414
export * from './builder/schema-builder.js';
1515
export * from './utils/filter-converter.js';
16-
export * from './evaluator/index.js';
17-
export * from './actions/index.js';
18-
export * from './query/index.js';
16+
export * from './evaluator';
17+
export * from './actions';
18+
export * from './query';
1919
// export * from './data-scope'; // TODO
2020
// export * from './validators'; // TODO
2121

packages/core/src/validation/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
export * from './validation-engine.js';
99
export * from './schema-validator.js';
10-
export * from './validators/index.js';
10+
export * from './validators';

0 commit comments

Comments
 (0)