@mcp-use/cli 2.8.0 → 2.8.1-canary.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -4362,7 +4362,7 @@ async function buildWidgets(projectPath) {
4362
4362
  const builtWidgets = [];
4363
4363
  for (const entry of entries) {
4364
4364
  const widgetName = entry.name;
4365
- const entryPath = entry.path;
4365
+ const entryPath = entry.path.replace(/\\/g, "/");
4366
4366
  console.log(source_default.gray(` - Building ${widgetName}...`));
4367
4367
  const tempDir = import_node_path6.default.join(projectPath, ".mcp-use", widgetName);
4368
4368
  await fs10.mkdir(tempDir, { recursive: true });