We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06e2743 commit 9634532Copy full SHA for 9634532
CHANGELOG.md
@@ -0,0 +1 @@
1
+- Fixed issue where MCP server was blocked by console.log
src/appUtils.ts
@@ -66,9 +66,6 @@ export async function detectApps(dirPath: string): Promise<App[]> {
66
const adminAndWebApps = (
67
await Promise.all(packageJsonFiles.map((p) => packageJsonToAdminOrWebApp(dirPath, p)))
68
).flat();
69
- console.log("packageJsonFiles", packageJsonFiles);
70
- console.log("adminAndWebApps", adminAndWebApps);
71
-
72
const flutterAppPromises = await Promise.all(
73
pubSpecYamlFiles.map((f) => processFlutterDir(dirPath, f)),
74
);
0 commit comments