@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.js CHANGED
@@ -4344,7 +4344,7 @@ async function buildWidgets(projectPath) {
4344
4344
  const builtWidgets = [];
4345
4345
  for (const entry of entries) {
4346
4346
  const widgetName = entry.name;
4347
- const entryPath = entry.path;
4347
+ const entryPath = entry.path.replace(/\\/g, "/");
4348
4348
  console.log(source_default.gray(` - Building ${widgetName}...`));
4349
4349
  const tempDir = path6.join(projectPath, ".mcp-use", widgetName);
4350
4350
  await fs10.mkdir(tempDir, { recursive: true });