You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let package_path_str = package_path.to_string_lossy();
417
-
log::warn!("Package '{}' has not defined any sources, but is not the root package. This is likely a mistake. It is located: {}", config.name, package_path_str);
418
+
log::warn!(
419
+
"Package '{}' has not defined any sources, but is not the root package. This is likely a mistake. It is located: {}",
Copy file name to clipboardExpand all lines: rewatch/src/config.rs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -454,7 +454,10 @@ impl Config {
454
454
},
455
455
Ok(false) => vec![],
456
456
Err(_) => {
457
-
eprintln!("Could not establish Rescript Version number for uncurried mode. Defaulting to Rescript < 11, disabling uncurried mode. Please specify an exact version if you need > 11 and default uncurried mode. Version: {}", version);
457
+
eprintln!(
458
+
"Could not establish Rescript Version number for uncurried mode. Defaulting to Rescript < 11, disabling uncurried mode. Please specify an exact version if you need > 11 and default uncurried mode. Version: {}",
0 commit comments