From deb8c33689d723a4801bc05bf97b0ee82ace6969 Mon Sep 17 00:00:00 2001 From: Mark Knichel <7355009+mknichel@users.noreply.github.com> Date: Fri, 10 Jan 2025 11:22:28 -0800 Subject: [PATCH] [microfrontends] Remove the hyphen when looking for microfrontends binary --- crates/turborepo-lib/src/task_graph/visitor/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/turborepo-lib/src/task_graph/visitor/command.rs b/crates/turborepo-lib/src/task_graph/visitor/command.rs index 335f7040fe90b..84446a020ee9b 100644 --- a/crates/turborepo-lib/src/task_graph/visitor/command.rs +++ b/crates/turborepo-lib/src/task_graph/visitor/command.rs @@ -230,7 +230,7 @@ impl<'a> CommandProvider for MicroFrontendProxyProvider<'a> { args.extend(local_apps); // TODO: leverage package manager to find the local proxy - let program = package_dir.join_components(&["node_modules", ".bin", "micro-frontends"]); + let program = package_dir.join_components(&["node_modules", ".bin", "microfrontends"]); let mut cmd = Command::new(program.as_std_path()); cmd.current_dir(package_dir).args(args).open_stdin();