We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8259750 commit 3a698ddCopy full SHA for 3a698dd
1 file changed
crates/vite_task_graph/src/config/mod.rs
@@ -110,11 +110,11 @@ pub struct ResolvedInputConfig {
110
/// Whether automatic file tracking is enabled
111
pub includes_auto: bool,
112
113
- /// Positive glob patterns (files to include).
+ /// Positive glob patterns (files to include), relative to the workspace root.
114
/// Sorted for deterministic cache keys.
115
pub positive_globs: BTreeSet<Str>,
116
117
- /// Negative glob patterns (files to exclude, without the `!` prefix).
+ /// Negative glob patterns (files to exclude, without the `!` prefix), relative to the workspace root.
118
119
pub negative_globs: BTreeSet<Str>,
120
}
0 commit comments