it_should_scan_next_dynamic_folders() — tailwindcss Function Reference
Architecture documentation for the it_should_scan_next_dynamic_folders() function in scanner.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD bed75d32_cbee_15a0_0769_375377187cc4["it_should_scan_next_dynamic_folders()"] 2c5d72c1_5cbe_ebbe_4eca_30cd90f4d096["scan_with_globs()"] bed75d32_cbee_15a0_0769_375377187cc4 -->|calls| 2c5d72c1_5cbe_ebbe_4eca_30cd90f4d096 style bed75d32_cbee_15a0_0769_375377187cc4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/tests/scanner.rs lines 623–650
fn it_should_scan_next_dynamic_folders() {
let ScanResult {
candidates,
normalized_sources,
..
} = scan_with_globs(
&[
// We know that `.styl` extensions are ignored, so they are not covered by auto content
// detection.
("app/[slug]/page.styl", "content-['[slug]']"),
("app/[...slug]/page.styl", "content-['[...slug]']"),
("app/[[...slug]]/page.styl", "content-['[[...slug]]']"),
("app/(theme)/page.styl", "content-['(theme)']"),
],
vec!["@source '**/*'", "@source './**/*.{styl}'"],
);
assert_eq!(
candidates,
vec![
"content-['(theme)']",
"content-['[...slug]']",
"content-['[[...slug]]']",
"content-['[slug]']",
],
);
assert_eq!(normalized_sources, vec!["**/*", "**/*.styl"]);
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does it_should_scan_next_dynamic_folders() do?
it_should_scan_next_dynamic_folders() is a function in the tailwindcss codebase.
What does it_should_scan_next_dynamic_folders() call?
it_should_scan_next_dynamic_folders() calls 1 function(s): scan_with_globs.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free