Skip to content

Commit

Permalink
Fix issue after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed May 7, 2024
1 parent 4ae9476 commit 88d1549
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/turborepo-lib/src/package_changes_watcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use radix_trie::{Trie, TrieCommon};
use tokio::sync::{broadcast, oneshot, Mutex};
use turbopath::{AbsoluteSystemPathBuf, AnchoredSystemPath, AnchoredSystemPathBuf};
use turborepo_filewatch::{
hash_watcher::{HashSpec, HashWatcher},
hash_watcher::{HashSpec, HashWatcher, InputGlobs},
NotifyError, OptionalWatch,
};
use turborepo_repository::{
Expand Down Expand Up @@ -200,7 +200,7 @@ impl Subscriber {
.get_file_hashes(HashSpec {
package_path: pkg.path.clone(),
// TODO: Support inputs
inputs: None,
inputs: InputGlobs::Default,
})
.await
else {
Expand Down

0 comments on commit 88d1549

Please sign in to comment.