@@ -2,7 +2,6 @@ mod command;
22mod error;
33mod exec;
44mod output;
5-
65use std:: {
76 borrow:: Cow ,
87 collections:: HashSet ,
@@ -23,10 +22,7 @@ use tracing::{debug, error, warn, Span};
2322use turbopath:: { AbsoluteSystemPath , AnchoredSystemPath } ;
2423use turborepo_ci:: { Vendor , VendorBehavior } ;
2524use turborepo_env:: { platform:: PlatformEnv , EnvironmentVariableMap } ;
26- use turborepo_repository:: {
27- package_graph:: { PackageGraph , PackageName , ROOT_PKG_NAME } ,
28- package_manager:: PackageManager ,
29- } ;
25+ use turborepo_repository:: package_graph:: { PackageGraph , PackageName , ROOT_PKG_NAME } ;
3026use turborepo_telemetry:: events:: {
3127 generic:: GenericEventBuilder , task:: PackageTaskEventBuilder , EventBuilder , TrackedErrors ,
3228} ;
@@ -82,9 +78,8 @@ pub enum Error {
8278 #[ error(
8379 "Your `package.json` script looks like it invokes a Root Task ({task_name}), creating a \
8480 loop of `turbo` invocations. You likely have misconfigured the strategy for your scripts \
85- and tasks or your package manager's Workspace structure."
81+ and tasks or your package manager's Workspace structure.\n \n More information: https://test.com "
8682 ) ]
87- #[ help( "https://TODO.com" ) ]
8883 RecursiveTurbo {
8984 task_name : String ,
9085 command : String ,
0 commit comments