Skip to content

Commit

Permalink
feat: Add @magickml/portal and @magickml/knowledge modules to frimoir…
Browse files Browse the repository at this point in the history
…e framework
  • Loading branch information
coffeeorgreentea committed Aug 6, 2024
1 parent 6384380 commit 369bc0e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
5 changes: 4 additions & 1 deletion grimoire/framework/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,10 @@
"unwasm": "^0.3.9",
"@magickml/nodes": "workspace:*",
"@magickml/schemas": "workspace:*",
"@magickml/spells": "workspace:*"
"@magickml/spells": "workspace:*",
"@magickml/portal": "workspace:*",
"@magickml/knowledge": "workspace:*",
"@magickml/tools": "workspace:*"
},
"devDependencies": {
"@azure/functions": "^3.5.1",
Expand Down
10 changes: 9 additions & 1 deletion grimoire/framework/src/cli/mod.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
import { nodeModule } from '@magickml/nodes'
import { schemasModule } from '@magickml/schemas'
import { spellsModule } from '@magickml/spells'
import { portalModule } from '@magickml/portal'
import { knowledgeModule } from '@magickml/knowledge'

export const modules = [nodeModule, schemasModule, spellsModule]
export const modules = [
nodeModule,
schemasModule,
spellsModule,
portalModule,
knowledgeModule,
] as const

0 comments on commit 369bc0e

Please sign in to comment.