File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
rocket-chatter-ingestion-server/src
process/prepare/processor Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 11import { TreeNode } from "../process/prepare/processor/core/treeNode"
22import { LLM } from "./llm"
33
4- export type DBNodeRelation = "IN_FILE " | "USES"
4+ export type DBNodeRelation = "CONTAINS " | "USES"
55
66export class DBNode {
77 id : string
Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ export class FileProcessor implements IFileProcessor {
6464 const currentFileDirectory = sourceFile
6565 . getFullPath ( )
6666 . slice ( 0 , sourceFile . getFullPath ( ) . lastIndexOf ( "/" ) )
67- console . log ( currentFileDirectory )
6867
6968 let finalPath = ""
7069 const backSteps = relativePath . match ( / \. \. \/ / g)
@@ -84,8 +83,6 @@ export class FileProcessor implements IFileProcessor {
8483 . replaceAll ( "\\" , "/" )
8584 }
8685
87- console . log ( relativePath , finalPath )
88-
8986 parsedImports . set ( importName , finalPath )
9087 }
9188 }
You can’t perform that action at this time.
0 commit comments