diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index fbec5b4..c1d1868 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -9,7 +9,7 @@ { "name": "understand-anything", "description": "Multi-agent codebase analysis with interactive dashboard, guided tours, and skill commands", - "version": "1.0.2", + "version": "1.0.3", "source": "./understand-anything-plugin" } ] diff --git a/understand-anything-plugin/package.json b/understand-anything-plugin/package.json index adec36d..0aa2376 100644 --- a/understand-anything-plugin/package.json +++ b/understand-anything-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@understand-anything/skill", - "version": "1.0.2", + "version": "1.0.3", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/understand-anything-plugin/packages/dashboard/vite.config.ts b/understand-anything-plugin/packages/dashboard/vite.config.ts index 833d53b..c05bc61 100644 --- a/understand-anything-plugin/packages/dashboard/vite.config.ts +++ b/understand-anything-plugin/packages/dashboard/vite.config.ts @@ -5,6 +5,13 @@ import path from "path"; import fs from "fs"; export default defineConfig({ + resolve: { + alias: { + "@understand-anything/core/schema": path.resolve(__dirname, "../core/dist/schema.js"), + "@understand-anything/core/search": path.resolve(__dirname, "../core/dist/search.js"), + "@understand-anything/core/types": path.resolve(__dirname, "../core/dist/types.js"), + }, + }, plugins: [ react(), tailwindcss(),