Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 35 additions & 35 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/cfg.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ import { info } from './logger.js';
import { paginateResult } from './paginate.js';

// Re-export for backward compatibility
export { CFG_RULES };
export { _makeCfgRules as makeCfgRules };
export { _makeCfgRules as makeCfgRules, CFG_RULES };

const CFG_EXTENSIONS = buildExtensionSet(CFG_RULES);

Expand Down
2 changes: 1 addition & 1 deletion src/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ export async function run() {
await program.parseAsync();
}

export { program, registerCommand, ctx };
export { ctx, program, registerCommand };
2 changes: 1 addition & 1 deletion src/commands/structure.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'node:path';
import { hotspotsData, moduleBoundariesData, structureData } from '../structure.js';

export { structureData, hotspotsData, moduleBoundariesData };
export { hotspotsData, moduleBoundariesData, structureData };

export function formatStructure(data) {
if (data.count === 0) return 'No directory structure found. Run "codegraph build" first.';
Expand Down
3 changes: 1 addition & 2 deletions src/dataflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ import { paginateResult } from './paginate.js';
import { ALL_SYMBOL_KINDS, normalizeSymbol } from './queries.js';

// Re-export for backward compatibility
export { DATAFLOW_RULES };
export { _makeDataflowRules as makeDataflowRules };
export { _makeDataflowRules as makeDataflowRules, DATAFLOW_RULES };

export const DATAFLOW_EXTENSIONS = buildExtensionSet(DATAFLOW_RULES);

Expand Down
2 changes: 1 addition & 1 deletion src/resolve.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,4 @@ export function resolveImportsBatch(inputs, rootDir, aliases, knownFiles) {

// ── Exported for testing ────────────────────────────────────────────

export { resolveImportPathJS, computeConfidenceJS };
export { computeConfidenceJS, resolveImportPathJS };
Loading