@mcp-use/cli 2.8.1-canary.0 → 2.8.1-canary.2
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
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 });
|