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();