Skip to content

Commit 4370528

Browse files
committed
debug ci
1 parent bb7eeb1 commit 4370528

17 files changed

Lines changed: 25113 additions & 2 deletions

crates/vite_task/src/session/execute/spawn.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ where
174174
let path_writes = &mut track_result.path_writes;
175175

176176
for access in termination.path_accesses.iter() {
177+
dbg!(&access);
177178
let relative_path = access
178179
.path
179180
.strip_path_prefix(workspace_root, |strip_result| {

crates/vite_task_bin/tests/test_snapshots/fixtures/cache-keys/snapshots.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,6 @@ name = "direct lint"
3636
steps = [
3737
"vite lint",
3838
"echo debugger > main.js",
39+
"print-file main.js",
3940
"vite lint",
4041
]

crates/vite_task_bin/tests/test_snapshots/redact.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ fn redact_string(s: &mut String, redactions: &[(&str, &str)]) {
5454

5555
pub fn redact_e2e_output(mut output: String, workspace_root: &str) -> String {
5656
let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
57+
5758
redact_string(
5859
&mut output,
5960
&[(workspace_root, "<workspace>"), (manifest_dir.as_str(), "<manifest_dir>")],

0 commit comments

Comments
 (0)