Skip to content

Commit

Permalink
ci: fix paths in the .generated_ast_watch_list.yml. (#5520)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzvxa committed Sep 6, 2024
1 parent 2a43fa4 commit 10e8984
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/.generated_ast_watch_list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ src:
- 'crates/oxc_ast/src/generated/derive_content_hash.rs'
- 'crates/oxc_regular_expression/src/generated/derive_content_hash.rs'
- 'crates/oxc_syntax/src/generated/derive_content_hash.rs'
- 'tasks/ast_codegen/src/**'
- 'tasks/ast_codegen/src/**/*'
- '.github/.generated_ast_watch_list.yml'
3 changes: 2 additions & 1 deletion tasks/ast_tools/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ fn write_ci_filter(
push_item(side_effect.as_str());
}

push_item("tasks/ast_codegen/src/**");
push_item("tasks/ast_codegen/src/**/*");
push_item(output_path);

write_all_to(output.as_bytes(), output_path)
}

0 comments on commit 10e8984

Please sign in to comment.