issue-103: Wire victorialogs extension into the package manifest #104
No reviewers
Labels
No labels
bug
chore
documentation
enhancement
feature
ready
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
david/pi-extensions-and-skills!104
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/issue-103/wire-victorialogs-extension-into-the-package-manifest"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What & why
Registers the already-implemented VictoriaLogs pi extension in the package manifest so it is actually loaded when this package is installed. The extension itself (
extensions/victorialogs/) was built out across earlier issues (client, tools, tests, README) but was never added topackage.json'spi.extensionsarray — this PR closes that gap, following the same pattern used for thegrillmeandforgejoextensions.Verification performed
extensions/victorialogs/index.tsexists and exports a validdefault function(pi: ExtensionAPI)entry point that registerslogs_search,logs_hits, andlogs_facetstools — same shape as sibling extensions.package.jsonis valid JSON after the edit.package.jsonalso declares./index.tsas its entry point, consistent with the manifest path added here.Per-file breakdown
Modified:
package.json— added"extensions/victorialogs/index.ts"to thepi.extensionsarray.Closes #103