Skip to content

Commit

Permalink
Fixing bugs from moving to strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed May 17, 2024
1 parent e9acfb0 commit 114a98a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/hash/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ mod test {
dot_env: &[turbopath::RelativeUnixPathBuf::new("dotenv".to_string()).unwrap()],
};

assert_eq!(global_hash.hash(), "64556c46ff3c4289");
assert_eq!(global_hash.hash(), "c8f1724ea37eb6cd");
}

#[test_case(vec![], "459c029558afe716" ; "empty")]
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/run/summary/task_factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use turborepo_repository::package_graph::{PackageGraph, PackageInfo, PackageName
use super::{
execution::TaskExecutionSummary,
task::{SharedTaskSummary, TaskEnvVarSummary},
EnvMode, SinglePackageTaskSummary, TaskSummary,
SinglePackageTaskSummary, TaskSummary,
};
use crate::{
cli,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"pipeline": {
"build": {
"outputs": [],
"inputs": ["package.json"]
"env": [
"COREPACK_ENABLE_DOWNLOAD_PROMPT"
],
"inputs": [
"package.json"
]
}
}
}

0 comments on commit 114a98a

Please sign in to comment.