feat(FN-3638): extract roadmap domain into plugin and define plugin route s
This merge restructures the roadmap plugin by removing its duplicated domain logic (roadmap store, ordering, handoff, and types — ~3,000 lines deleted) and completing the plugin SDK scaffold with proper route status/body contracts and type exports. It also introduces eval settings infrastructure wit Fusion-Task-Id: FN-3638
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { RoadmapStore as CoreRoadmapStore } from "@fusion/core";
|
||||
import plugin, {
|
||||
RoadmapStore,
|
||||
applyRoadmapFeatureReorder,
|
||||
@@ -18,6 +19,7 @@ describe("fusion-plugin-roadmap package surface", () => {
|
||||
});
|
||||
|
||||
it("re-exports roadmap domain symbols", () => {
|
||||
expect(RoadmapStore).toBe(CoreRoadmapStore);
|
||||
expect(typeof normalizeRoadmapMilestoneOrder).toBe("function");
|
||||
expect(typeof applyRoadmapMilestoneReorder).toBe("function");
|
||||
expect(typeof normalizeRoadmapFeatureOrder).toBe("function");
|
||||
|
||||
Reference in New Issue
Block a user