Skip to content

Commit f611d80

Browse files
fix(affected): consider turbo.jsonc as a default global dependency (#10106)
### Description #10083 missed including `turbo.jsonc` as a global dependency when doing SCM based filters ### Testing Instructions 👀
1 parent 4f32563 commit f611d80

File tree

1 file changed

+1
-1
lines changed
  • crates/turborepo-repository/src/change_mapper

1 file changed

+1
-1
lines changed

crates/turborepo-repository/src/change_mapper/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use crate::package_graph::{
2020

2121
mod package;
2222

23-
const DEFAULT_GLOBAL_DEPS: [&str; 2] = ["package.json", "turbo.json"];
23+
const DEFAULT_GLOBAL_DEPS: &[&str] = ["package.json", "turbo.json", "turbo.jsonc"].as_slice();
2424

2525
// We may not be able to load the lockfile contents, but we
2626
// still want to be able to express a generic change.

0 commit comments

Comments
 (0)