mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-27 20:29:39 +02:00
refactor(dynamic): enhance Rust receiver construction with recursive dependency resolution, add Liquibase changelog context detection, and expand test coverage
This commit is contained in:
parent
acec041676
commit
8786d1b71e
6 changed files with 546 additions and 25 deletions
|
|
@ -1270,6 +1270,20 @@ fn framework_project_files_for_entry(entry_file: &str, lang: Lang) -> ProjectFil
|
|||
"routes/api.php",
|
||||
"app/Config/Routes.php",
|
||||
],
|
||||
Lang::Java => &[
|
||||
"changelog.xml",
|
||||
"changelog.yaml",
|
||||
"changelog.yml",
|
||||
"changelog.json",
|
||||
"db/changelog/db.changelog-master.xml",
|
||||
"db/changelog/db.changelog-master.yaml",
|
||||
"db/changelog/db.changelog-master.yml",
|
||||
"db/changelog/db.changelog-master.json",
|
||||
"src/main/resources/db/changelog/db.changelog-master.xml",
|
||||
"src/main/resources/db/changelog/db.changelog-master.yaml",
|
||||
"src/main/resources/db/changelog/db.changelog-master.yml",
|
||||
"src/main/resources/db/changelog/db.changelog-master.json",
|
||||
],
|
||||
_ => &[],
|
||||
};
|
||||
ProjectFileIndex::from_root(&root, rel_paths)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue