-
Notifications
You must be signed in to change notification settings - Fork 0
refactor: use git-warp API properly — eliminate pass-through wrappers #296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b424c12
87341cd
660e297
496e636
398ea7d
89d6e36
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,9 +3,9 @@ | |
| * Public API for git-mind — a project knowledge graph tool built on git-warp. | ||
| */ | ||
|
|
||
| export { initGraph, loadGraph, saveGraph } from './graph.js'; | ||
| export { createEdge, queryEdges, removeEdge, EDGE_TYPES } from './edges.js'; | ||
| export { getNodes, hasNode, getNode, getNodesByPrefix, setNodeProperty, unsetNodeProperty } from './nodes.js'; | ||
| export { initGraph, loadGraph } from './graph.js'; | ||
| export { createEdge, removeEdge, EDGE_TYPES } from './edges.js'; | ||
| export { getNode, setNodeProperty, unsetNodeProperty } from './nodes.js'; | ||
|
Comment on lines
+6
to
+8
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial Breaking API surface reduction — ensure migration docs are adequate. Five exports removed:
The CHANGELOG documents the migration paths. Confirm the README or API docs are updated for consumers, or consider adding a MIGRATION.md for this release. 🤖 Prompt for AI Agents |
||
| export { computeStatus } from './status.js'; | ||
| export { importFile, importData, parseImportFile, validateImportData } from './import.js'; | ||
| export { importFromMarkdown, parseFrontmatter } from './frontmatter.js'; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.