Skip to content

Commit 5dcc3f6

Browse files
committed
WIP e001a
1 parent e2e9db0 commit 5dcc3f6

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

crates/turborepo-filewatch/src/globwatcher.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ use std::{
22
collections::{BTreeSet, HashMap, HashSet},
33
fmt::Display,
44
future::IntoFuture,
5-
path::Path,
65
str::FromStr,
7-
sync::Arc,
86
time::Duration,
97
};
108

@@ -517,7 +515,7 @@ impl GlobTracker {
517515
#[cfg(test)]
518516
mod test {
519517
use std::{
520-
collections::{HashMap, HashSet},
518+
collections::{BTreeSet, HashMap, HashSet},
521519
str::FromStr,
522520
time::Duration,
523521
};

crates/turborepo-scm/src/package_deps.rs

-5
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ impl SCM {
4444
.iter()
4545
.any(|input| input.as_ref() == INPUT_INCLUDE_DEFAULT_FILES);
4646

47-
// Check if any inputs use $TURBO_ROOT$ syntax for root-relative paths
48-
let has_root_relative = inputs
49-
.iter()
50-
.any(|input| input.as_ref() == INPUT_ROOT_RELATIVE);
51-
5247
match self {
5348
SCM::Manual => {
5449
if let Some(telemetry) = telemetry {

0 commit comments

Comments
 (0)