it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files() — tailwindcss Function Reference
Architecture documentation for the it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files() function in scanner.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 4be3b7ac_76b4_a45f_ec5d_cf4d108c696c["it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files()"] 66c99d71_b17e_d5a4_2a47_c675fac3c9cc["scan()"] 4be3b7ac_76b4_a45f_ec5d_cf4d108c696c -->|calls| 66c99d71_b17e_d5a4_2a47_c675fac3c9cc style 4be3b7ac_76b4_a45f_ec5d_cf4d108c696c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/tests/scanner.rs lines 251–268
fn it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files() {
let ScanResult {
files,
globs,
normalized_sources,
..
} = scan(&[
(".gitignore", "public/b.html\na.html"),
("index.html", ""),
("public/a.html", ""),
("public/b.html", ""),
("public/c.html", ""),
]);
assert_eq!(files, vec!["index.html", "public/c.html",]);
assert_eq!(globs, vec!["*"]);
assert_eq!(normalized_sources, vec!["**/*"]);
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files() do?
it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files() is a function in the tailwindcss codebase.
What does it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files() call?
it_should_list_all_files_in_the_public_folder_explicitly_except_ignored_files() calls 1 function(s): scan.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free