Skip to content

Commit

Permalink
export: expose newAdvice function and Advice type
Browse files Browse the repository at this point in the history
Expose the newAdvice function and Advice type from the advice module to allow for their usage in other parts of the application. This change makes it easier to access and utilize these components.
  • Loading branch information
phodal committed Nov 1, 2024
1 parent 0356131 commit f0f24d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions web/core/lib/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export { CustomEditorCommands } from '@/editor/action/custom-editor-commands.ts'
export { Sidebar } from '@/editor/components/sidebar.tsx';
export { AdviceManager } from '@/editor/extensions/advice/advice-manager';
export { AdviceView } from '@/editor/extensions/advice/advice-view';
export { newAdvice } from '@/editor/extensions/advice/advice';
export type { Advice } from '@/editor/extensions/advice/advice';
export { Settings } from '@/editor/components/settings';
export { AiActionExecutor } from '@/editor/action/AiActionExecutor.ts';
export { OutputForm } from '@/editor/defs/custom-action.type';
Expand Down
2 changes: 1 addition & 1 deletion web/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@studio-b3/web-core",
"version": "0.8.5",
"version": "0.8.6",
"type": "module",
"main": "dist/main.js",
"types": "dist-types/main.d.ts",
Expand Down

0 comments on commit f0f24d4

Please sign in to comment.