feat(FN-3883): fix dependency-graph plugin exports and add CLI bundle entry

Fixed the `@fusion-plugin/dependency-graph` plugin's exports and build entry points so it bundles correctly with the CLI, added test coverage for plugin enable success and error-state toasts, and included the plugin's dist in the CLI bundle via tsup config.

Fusion-Task-Id: FN-3883
This commit is contained in:
Fusion
2026-05-09 15:12:13 -07:00
committed by gsxdsm
parent 2d3af5b6ce
commit 9d998e762d
9 changed files with 110 additions and 21 deletions

View File

@@ -2,7 +2,7 @@
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "../..",
"rootDir": "./src",
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "bundler",
@@ -10,7 +10,7 @@
"paths": {
"@fusion/dashboard/app/components/TaskCard": ["./src/dashboard-interop.d.ts"],
"@fusion/dashboard/app/utils/taskStuck": ["./src/dashboard-interop.d.ts"],
"@fusion/dashboard/app/plugins/types": ["../../packages/dashboard/app/plugins/types.ts"]
"@fusion/dashboard/app/plugins/types": ["./src/dashboard-interop.d.ts"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts"],