Skip to content

Commit

Permalink
fix: fix error denpendencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshinesmilelk authored and BroKun committed Aug 13, 2024
1 parent f5059fb commit 472a4a8
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 5 deletions.
33 changes: 33 additions & 0 deletions .changeset/funny-ducks-sparkle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
"@difizen/libro-jupyter": patch
"@difizen/libro-kernel": patch
"@difizen/libro-core": patch
"@difizen/libro-docs": patch
"@difizen/libro-code-cell": patch
"@difizen/libro-code-editor": patch
"@difizen/libro-codemirror": patch
"@difizen/libro-cofine-editor": patch
"@difizen/libro-cofine-editor-contribution": patch
"@difizen/libro-cofine-editor-core": patch
"@difizen/libro-cofine-textmate": patch
"@difizen/libro-common": patch
"@difizen/libro-l10n": patch
"@difizen/libro-lab": patch
"@difizen/libro-language-client": patch
"@difizen/libro-lsp": patch
"@difizen/libro-markdown": patch
"@difizen/libro-markdown-cell": patch
"@difizen/libro-output": patch
"@difizen/libro-prompt-cell": patch
"@difizen/libro-raw-cell": patch
"@difizen/libro-rendermime": patch
"@difizen/libro-search": patch
"@difizen/libro-search-code-cell": patch
"@difizen/libro-shared-model": patch
"@difizen/libro-terminal": patch
"@difizen/libro-toc": patch
"@difizen/libro-virtualized": patch
"@difizen/libro-widget": patch
---

fix: fix error denpendencies
1 change: 1 addition & 0 deletions packages/libro-jupyter/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,6 @@ export const LibroJupyterNoEditorModule = ManaModule.create()
export const LibroJupyterModule = ManaModule.create().dependOn(
LibroE2EditorModule,
CodeMirrorEditorModule,
LibroJupyterNoEditorModule,
LibroLanguageClientModule,
);
9 changes: 4 additions & 5 deletions packages/libro-kernel/src/server/server-module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { ManaModule } from '@difizen/mana-app';

import { LibroKernelSpecModule } from '../index.js';

import { ServerConnection } from './server-connection.js';
import { ServerManager } from './server-manager.js';

export const LibroServerModule = ManaModule.create()
.register(ServerConnection, ServerManager)
.dependOn(LibroKernelSpecModule);
export const LibroServerModule = ManaModule.create().register(
ServerConnection,
ServerManager,
);

0 comments on commit 472a4a8

Please sign in to comment.