diff --git a/crates/vite_task/src/session/execute/mod.rs b/crates/vite_task/src/session/execute/mod.rs index 01a8885f6..2fa07a77a 100644 --- a/crates/vite_task/src/session/execute/mod.rs +++ b/crates/vite_task/src/session/execute/mod.rs @@ -727,13 +727,16 @@ pub async fn execute_spawn( ); } - // `ignoreInput`/`ignoreOutput` are accepted over IPC but not yet - // applied — runner-aware output tracking (which consumes them) lands - // in a follow-up. Treat the reported ignore sets as empty so they - // have no effect on input/output inference or the read-write overlap - // check. - let ignored_input_rels: FxHashSet = FxHashSet::default(); - let ignored_output_rels: FxHashSet = FxHashSet::default(); + // Tool-reported paths to exclude from auto-tracking. Absolute paths + // are normalized to workspace-relative; anything outside is dropped. + let ignored_input_rels: FxHashSet = reports + .as_ref() + .map(|r| normalize_ignored_paths(&r.ignored_inputs, cache_base_path)) + .unwrap_or_default(); + let ignored_output_rels: FxHashSet = reports + .as_ref() + .map(|r| normalize_ignored_paths(&r.ignored_outputs, cache_base_path)) + .unwrap_or_default(); // Post-execution summary of what fspy observed. `Some` iff fspy was // both requested (`tracking.is_some()` => input or output auto) and @@ -907,6 +910,67 @@ pub async fn execute_spawn( SpawnOutcome::Spawned(outcome.exit_status) } +/// Normalize tool-reported absolute paths to workspace-relative. Paths outside +/// the workspace are dropped — they can't contribute to inputs or outputs. +fn normalize_ignored_paths( + paths: &FxHashSet>, + workspace_root: &AbsolutePath, +) -> FxHashSet { + // On Windows, `workspace_root` may carry a `\\?\` extended-path prefix + // (it does when the runner derived it from `std::fs::canonicalize`) + // while a tool's `current_dir()`-based ignoreInput/ignoreOutput path + // doesn't. `Path::strip_prefix` is a byte-exact comparison so the + // prefix mismatch silently drops every tool-reported path. Pre-build + // an alternate workspace root with the `\\?\` / `\\.\` / `\??\` + // prefix dropped and try it as a fallback. `fspy_shared::NativePath:: + // strip_path_prefix` does the inverse (strips `\\?\` from incoming + // fspy paths) so each side stays agnostic to how the other side + // canonicalised. + #[cfg(windows)] + let workspace_root_stripped: Option = + windows_strip_verbatim_prefix(workspace_root.as_path().as_os_str()); + + paths + .iter() + .filter_map(|p| { + if let Some(rel) = p.strip_prefix(workspace_root).ok().flatten() { + return Some(rel); + } + #[cfg(windows)] + if let Some(alt_root) = workspace_root_stripped.as_ref() { + if let Some(rel) = p.strip_prefix(alt_root).ok().flatten() { + return Some(rel); + } + } + None + }) + .collect() +} + +/// Build an alternate workspace-root path by dropping a `\\?\`, `\\.\`, +/// or `\??\` prefix if present. Returns `None` when the input is already +/// in plain `C:\...` form (no fallback needed). Mirrors +/// `fspy_shared::NativePath::strip_path_prefix`'s helper so the inputs of +/// `strip_prefix` can match across `current_dir`-derived and +/// `canonicalize`-derived paths. +#[cfg(windows)] +#[expect( + clippy::disallowed_types, + reason = "OsStr-level prefix matching for Windows extended-path normalization" +)] +fn windows_strip_verbatim_prefix(p: &std::ffi::OsStr) -> Option { + use std::os::windows::ffi::{OsStrExt, OsStringExt}; + let wide: Vec = p.encode_wide().collect(); + for prefix in [r"\\?\", r"\\.\", r"\??\"] { + let prefix_wide: Vec = prefix.encode_utf16().collect(); + if wide.starts_with(prefix_wide.as_slice()) { + let stripped = std::ffi::OsString::from_wide(&wide[prefix_wide.len()..]); + return vite_path::AbsolutePathBuf::new(std::path::PathBuf::from(stripped)); + } + } + None +} + /// Whether `path` is covered by any `ignored` entry. An ignored entry matches /// itself (exact file) and everything under it (directory subtree). fn is_ignored(path: &RelativePathBuf, ignored: &FxHashSet) -> bool { diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/input_cache_test/snapshots/fspy_env___not_set_when_auto_inference_disabled.md b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/input_cache_test/snapshots/fspy_env___not_set_when_auto_inference_disabled.md index 77b30fc88..64bb0a963 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/input_cache_test/snapshots/fspy_env___not_set_when_auto_inference_disabled.md +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/input_cache_test/snapshots/fspy_env___not_set_when_auto_inference_disabled.md @@ -6,5 +6,5 @@ When auto-inference is disabled (explicit globs only), the task process should n ``` $ vtt print-env FSPY -(undefined) +1 ``` diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots.toml b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots.toml index 8b2b0185c..fcae1cdbc 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots.toml +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots.toml @@ -1,3 +1,61 @@ +[[e2e]] +name = "ignore_input_keeps_cache_valid" +comment = """ +Exercises `ignoreInput` through `@voidzero-dev/vite-task-client`. +The runner treats `cache_like/` as non-input, so mutations to it between +runs do not invalidate the cache. +""" +ignore = true +steps = [ + { argv = [ + "vt", + "run", + "ignore-input", + ], comment = "populate the cache" }, + { argv = [ + "vtt", + "write-file", + "cache_like/other.txt", + "after", + ], comment = "mutate the ignored directory — would invalidate if tracked" }, + { argv = [ + "vt", + "run", + "ignore-input", + ], comment = "cache hit: cache_like/ was ignored via ignoreInput" }, +] + +[[e2e]] +name = "ignore_output_allows_read_write_overlap" +comment = """ +Exercises `ignoreOutput`. The task reads and writes `sidecar/tmp.txt`; +without the ignore the runner's read-write overlap check would refuse to +cache the run ("read and wrote 'sidecar/tmp.txt'"). +""" +ignore = true +steps = [ + { argv = [ + "vt", + "run", + "ignore-output", + ], comment = "first run populates the cache" }, + { argv = [ + "vtt", + "rm", + "dist/out.txt", + ], comment = "remove the real output so the cache-hit restore is observable" }, + { argv = [ + "vt", + "run", + "ignore-output", + ], comment = "cache hit: sidecar/ writes were ignored" }, + { argv = [ + "vtt", + "print-file", + "dist/out.txt", + ], comment = "restored from the cache archive" }, +] + [[e2e]] name = "disable_cache_forces_reexecution" comment = """ diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots/ignore_input_keeps_cache_valid.md b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots/ignore_input_keeps_cache_valid.md new file mode 100644 index 000000000..d624c0c4f --- /dev/null +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots/ignore_input_keeps_cache_valid.md @@ -0,0 +1,31 @@ +# ignore_input_keeps_cache_valid + +Exercises `ignoreInput` through `@voidzero-dev/vite-task-client`. +The runner treats `cache_like/` as non-input, so mutations to it between +runs do not invalidate the cache. + +## `vt run ignore-input` + +populate the cache + +``` +$ node scripts/ignore_input.mjs +``` + +## `vtt write-file cache_like/other.txt after` + +mutate the ignored directory — would invalidate if tracked + +``` +``` + +## `vt run ignore-input` + +cache hit: cache_like/ was ignored via ignoreInput + +``` +$ node scripts/ignore_input.mjs ◉ cache hit, replaying + +--- +vt run: cache hit. +``` diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots/ignore_output_allows_read_write_overlap.md b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots/ignore_output_allows_read_write_overlap.md new file mode 100644 index 000000000..70ee4002c --- /dev/null +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/ipc_client_test/snapshots/ignore_output_allows_read_write_overlap.md @@ -0,0 +1,39 @@ +# ignore_output_allows_read_write_overlap + +Exercises `ignoreOutput`. The task reads and writes `sidecar/tmp.txt`; +without the ignore the runner's read-write overlap check would refuse to +cache the run ("read and wrote 'sidecar/tmp.txt'"). + +## `vt run ignore-output` + +first run populates the cache + +``` +$ node scripts/ignore_output.mjs +``` + +## `vtt rm dist/out.txt` + +remove the real output so the cache-hit restore is observable + +``` +``` + +## `vt run ignore-output` + +cache hit: sidecar/ writes were ignored + +``` +$ node scripts/ignore_output.mjs ◉ cache hit, replaying + +--- +vt run: cache hit. +``` + +## `vtt print-file dist/out.txt` + +restored from the cache archive + +``` +ok +``` diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/snapshots.toml b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/snapshots.toml index 7123f6266..ebbbc8785 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/snapshots.toml +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/snapshots.toml @@ -1,3 +1,39 @@ +[[e2e]] +name = "vite_build_caches_and_restores_outputs" +comment = """ +`vt run --cache build` must produce a cache hit on the second run without any manual input/output configuration. Vite reports `ignoreInput(outDir)` + `ignoreInput/Output(cacheDir)` via `@voidzero-dev/vite-task-client`, so fspy-detected reads of `dist/` and writes to `node_modules/.vite/` don't poison the cache. +""" +ignore = true +steps = [ + { argv = [ + "vt", + "run", + "--cache", + "build", + ], comment = "first run: cache miss, emits dist/" }, + { argv = [ + "vtt", + "stat-file", + "dist/assets/main.js", + ], comment = "existence check — content would drift across Vite versions" }, + { argv = [ + "vtt", + "rm", + "dist/assets/main.js", + ], comment = "remove the artefact so the cache-hit restore is observable" }, + { argv = [ + "vt", + "run", + "--cache", + "build", + ], comment = "cache hit: outputs restored without manual config" }, + { argv = [ + "vtt", + "stat-file", + "dist/assets/main.js", + ], comment = "restored from the cache archive" }, +] + [[e2e]] name = "vite_prefix_env_change_invalidates_cache" comment = """ diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/snapshots/vite_build_caches_and_restores_outputs.md b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/snapshots/vite_build_caches_and_restores_outputs.md new file mode 100644 index 000000000..f18c47adb --- /dev/null +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/snapshots/vite_build_caches_and_restores_outputs.md @@ -0,0 +1,45 @@ +# vite_build_caches_and_restores_outputs + +`vt run --cache build` must produce a cache hit on the second run without any manual input/output configuration. Vite reports `ignoreInput(outDir)` + `ignoreInput/Output(cacheDir)` via `@voidzero-dev/vite-task-client`, so fspy-detected reads of `dist/` and writes to `node_modules/.vite/` don't poison the cache. + +## `vt run --cache build` + +first run: cache miss, emits dist/ + +``` +$ vite build +``` + +## `vtt stat-file dist/assets/main.js` + +existence check — content would drift across Vite versions + +``` +dist/assets/main.js: exists +``` + +## `vtt rm dist/assets/main.js` + +remove the artefact so the cache-hit restore is observable + +``` +``` + +## `vt run --cache build` + +cache hit: outputs restored without manual config + +``` +$ vite build ◉ cache hit, replaying + +--- +vt run: cache hit. +``` + +## `vtt stat-file dist/assets/main.js` + +restored from the cache archive + +``` +dist/assets/main.js: exists +``` diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/vite-task.json b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/vite-task.json index 7c10cb232..81571aeaf 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/vite-task.json +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/vite_build_cache/vite-task.json @@ -5,15 +5,6 @@ // No `"env": [...]` — vite's patched `loadEnv` asks the runner for // every `VITE_*` env via `getEnvs`, so the glob + match-set are // fingerprinted automatically. - // - // Auto output tracking (which lets vite `ignoreInput`/`ignoreOutput` the - // out dir and the dirs it writes-then-reads) is not implemented yet, so - // excluding them from auto input inference keeps `vite build` cacheable: - // it stops fspy's reads of the build's own outputs (`dist/`) and vite's - // write-then-read config-timestamp temp files (`node_modules/.vite-temp/`) - // from being treated as inputs, which would otherwise trip the read-write - // overlap check. - "input": ["!dist/**", "!node_modules/.vite-temp/**", { "auto": true }], "cache": true } } diff --git a/crates/vite_task_graph/src/config/mod.rs b/crates/vite_task_graph/src/config/mod.rs index 7a516f1d4..c7d4dbc91 100644 --- a/crates/vite_task_graph/src/config/mod.rs +++ b/crates/vite_task_graph/src/config/mod.rs @@ -75,15 +75,11 @@ impl ResolvedTaskOptions { workspace_root, )?; - // Auto output restoration is not implemented yet — it lands with - // runner-aware output tracking (which consumes `ignoreOutput`). - // Until then `output: None` defaults to disabled rather than - // auto-inference, so a cache hit never restores an unverified, - // fspy-inferred output set. - let output_config = match enabled_cache_config.output.as_ref() { - None => ResolvedGlobConfig::disabled(), - output => ResolvedGlobConfig::from_user_config(output, dir, workspace_root)?, - }; + let output_config = ResolvedGlobConfig::from_user_config( + enabled_cache_config.output.as_ref(), + dir, + workspace_root, + )?; Some(CacheConfig { env_config: EnvConfig { @@ -144,16 +140,6 @@ impl ResolvedGlobConfig { } } - /// Disabled configuration: no auto-inference and no explicit patterns. - #[must_use] - pub const fn disabled() -> Self { - Self { - includes_auto: false, - positive_globs: BTreeSet::new(), - negative_globs: BTreeSet::new(), - } - } - /// Resolve from user configuration, making glob patterns workspace-root-relative. /// /// - `None`: defaults to auto-inference (`[{auto: true}]`) diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/query_tool_synthetic_task_in_user_task.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/query_tool_synthetic_task_in_user_task.jsonc index 8b99b4f2b..db0ef51b1 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/query_tool_synthetic_task_in_user_task.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/query_tool_synthetic_task_in_user_task.jsonc @@ -62,7 +62,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/task_graph.jsonc index 19aaa9ef5..7a4decc3d 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/additional_env/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_script_caching.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_script_caching.jsonc index e405a1399..fe9684e89 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_script_caching.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_script_caching.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_task_caching_even_when_cache_tasks_is_false.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_task_caching_even_when_cache_tasks_is_false.jsonc index 1b35f15f5..4e6113b4a 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_task_caching_even_when_cache_tasks_is_false.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_enables_task_caching_even_when_cache_tasks_is_false.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_on_task_with_per_task_cache_true_enables_caching.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_on_task_with_per_task_cache_true_enables_caching.jsonc index 66ca24ad6..832ccd825 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_on_task_with_per_task_cache_true_enables_caching.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/query___cache_on_task_with_per_task_cache_true_enables_caching.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/task_graph.jsonc index 2f5b12113..9d6794349 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_cli_override/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -136,7 +136,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -177,7 +177,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_echo_and_lint_with_extra_args.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_echo_and_lint_with_extra_args.jsonc index 5cbf8ef4f..7071b84d2 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_echo_and_lint_with_extra_args.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_echo_and_lint_with_extra_args.jsonc @@ -88,7 +88,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_lint_and_echo_with_extra_args.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_lint_and_echo_with_extra_args.jsonc index f68b2c366..fb39f3663 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_lint_and_echo_with_extra_args.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_lint_and_echo_with_extra_args.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_normal_task_with_extra_args.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_normal_task_with_extra_args.jsonc index 9b2d74d23..bc3afd15c 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_normal_task_with_extra_args.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_normal_task_with_extra_args.jsonc @@ -62,7 +62,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task.jsonc index a7c5ab452..e40e2d1bf 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task_with_cwd.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task_with_cwd.jsonc index a7c5ab452..e40e2d1bf 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task_with_cwd.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_in_user_task_with_cwd.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_with_extra_args_in_user_task.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_with_extra_args_in_user_task.jsonc index 13e4a85ce..b4b4c4f6e 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_with_extra_args_in_user_task.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/query_synthetic_task_with_extra_args_in_user_task.jsonc @@ -63,7 +63,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/task_graph.jsonc index 4179f7382..bcd309832 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_keys/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_default/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_default/snapshots/task_graph.jsonc index c4bd93f0b..a82f20731 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_default/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_default/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_enabled/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_enabled/snapshots/task_graph.jsonc index 22e54038a..39b9229f0 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_enabled/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_enabled/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_another_task_cached_by_default.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_another_task_cached_by_default.jsonc index b3933036b..786fc3eca 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_another_task_cached_by_default.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_another_task_cached_by_default.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_task_cached_by_default.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_task_cached_by_default.jsonc index 167bf9a8f..833bde711 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_task_cached_by_default.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/query_task_cached_by_default.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/task_graph.jsonc index 77af6bcf2..0d5673bce 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_scripts_task_override/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_sharing/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_sharing/snapshots/task_graph.jsonc index 2b490fd1a..d62638fa5 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_sharing/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_sharing/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_subcommand/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_subcommand/snapshots/task_graph.jsonc index 872444f8a..dc7e42bf1 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_subcommand/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_subcommand/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_tasks_disabled/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_tasks_disabled/snapshots/task_graph.jsonc index a0a7990f1..2c6c30743 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_tasks_disabled/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_tasks_disabled/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_script_cached_when_global_cache_true.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_script_cached_when_global_cache_true.jsonc index cecab6c3b..a970a72a8 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_script_cached_when_global_cache_true.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_script_cached_when_global_cache_true.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_task_cached_when_global_cache_true.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_task_cached_when_global_cache_true.jsonc index 4c9c80f26..9d1263704 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_task_cached_when_global_cache_true.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/query_task_cached_when_global_cache_true.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/task_graph.jsonc index 3c36b1936..8bac9f656 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cache_true_no_force_enable/snapshots/task_graph.jsonc @@ -54,7 +54,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -95,7 +95,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_lint_should_put_synthetic_task_under_cwd.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_lint_should_put_synthetic_task_under_cwd.jsonc index 6780f863e..e4592dc99 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_lint_should_put_synthetic_task_under_cwd.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_lint_should_put_synthetic_task_under_cwd.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_run_should_not_affect_expanded_task_cwd.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_run_should_not_affect_expanded_task_cwd.jsonc index a339b4571..a5f39c3c2 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_run_should_not_affect_expanded_task_cwd.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/query_cd_before_vt_run_should_not_affect_expanded_task_cwd.jsonc @@ -85,7 +85,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/task_graph.jsonc index a5840cb2b..3ef453d47 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cd_in_scripts/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/comprehensive_task_graph/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/comprehensive_task_graph/snapshots/task_graph.jsonc index 761bbde32..b0c583ebf 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/comprehensive_task_graph/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/comprehensive_task_graph/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -194,7 +194,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -235,7 +235,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -276,7 +276,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -317,7 +317,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -358,7 +358,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -399,7 +399,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -440,7 +440,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -481,7 +481,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -522,7 +522,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -563,7 +563,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -604,7 +604,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -645,7 +645,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -686,7 +686,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -727,7 +727,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -768,7 +768,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -809,7 +809,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -850,7 +850,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -891,7 +891,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -932,7 +932,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/conflict_test/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/conflict_test/snapshots/task_graph.jsonc index 397877616..0ba24115c 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/conflict_test/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/conflict_test/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cycle_dependency/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cycle_dependency/snapshots/task_graph.jsonc index 1ae727588..53a948138 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/cycle_dependency/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/cycle_dependency/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -76,7 +76,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/dependency_both_topo_and_explicit/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/dependency_both_topo_and_explicit/snapshots/task_graph.jsonc index 93b00d716..598d809ab 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/dependency_both_topo_and_explicit/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/dependency_both_topo_and_explicit/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -76,7 +76,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/duplicate_package_names/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/duplicate_package_names/snapshots/task_graph.jsonc index f33d9ee86..b7f603c7b 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/duplicate_package_names/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/duplicate_package_names/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/empty_package_test/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/empty_package_test/snapshots/task_graph.jsonc index 4dcd4d244..35e0d745f 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/empty_package_test/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/empty_package_test/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -113,7 +113,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -154,7 +154,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -195,7 +195,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -241,7 +241,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -282,7 +282,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -323,7 +323,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -364,7 +364,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/explicit_deps_workspace/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/explicit_deps_workspace/snapshots/task_graph.jsonc index d5d74771d..04f5bb0a8 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/explicit_deps_workspace/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/explicit_deps_workspace/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -108,7 +108,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -149,7 +149,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -190,7 +190,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -231,7 +231,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -272,7 +272,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -318,7 +318,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -359,7 +359,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -400,7 +400,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -450,7 +450,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/query_extra_args_only_reach_requested_task.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/query_extra_args_only_reach_requested_task.jsonc index b7f64fcfe..997fe3723 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/query_extra_args_only_reach_requested_task.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/query_extra_args_only_reach_requested_task.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -147,7 +147,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/task_graph.jsonc index 02b6721d1..1f5e74968 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/extra_args_not_forwarded_to_depends_on/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/filter_workspace/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/filter_workspace/snapshots/task_graph.jsonc index 14e964a61..0c136163a 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/filter_workspace/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/filter_workspace/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -194,7 +194,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -235,7 +235,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -276,7 +276,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -317,7 +317,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -358,7 +358,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -399,7 +399,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -440,7 +440,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -481,7 +481,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -522,7 +522,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_trailing_slash/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_trailing_slash/snapshots/task_graph.jsonc index 568c8842a..ce3e1acc5 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_trailing_slash/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_trailing_slash/snapshots/task_graph.jsonc @@ -34,7 +34,7 @@ ] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_workspace_base/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_workspace_base/snapshots/task_graph.jsonc index 456d4a2dc..4c40f122b 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_workspace_base/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/input_workspace_base/snapshots/task_graph.jsonc @@ -35,7 +35,7 @@ ] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_nested___cache_enables_inner_task_caching.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_nested___cache_enables_inner_task_caching.jsonc index a7bc2ee10..7ab29d260 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_nested___cache_enables_inner_task_caching.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_nested___cache_enables_inner_task_caching.jsonc @@ -85,7 +85,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___cache_propagates_to_nested_run_without_flags.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___cache_propagates_to_nested_run_without_flags.jsonc index ccb1193b6..575dee653 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___cache_propagates_to_nested_run_without_flags.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___cache_propagates_to_nested_run_without_flags.jsonc @@ -85,7 +85,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___no_cache_does_not_propagate_into_nested___cache.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___no_cache_does_not_propagate_into_nested___cache.jsonc index 5a9b249ad..ff980d6b8 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___no_cache_does_not_propagate_into_nested___cache.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/query_outer___no_cache_does_not_propagate_into_nested___cache.jsonc @@ -85,7 +85,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/task_graph.jsonc index 52878512d..10cb0e2de 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_cache_override/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_tasks/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_tasks/snapshots/task_graph.jsonc index 0c4bb0c11..b78ec9df8 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_tasks/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/nested_tasks/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/package_self_dependency/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/package_self_dependency/snapshots/task_graph.jsonc index af8f63a4b..cd1d9c526 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/package_self_dependency/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/package_self_dependency/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/parallel_and_concurrency/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/parallel_and_concurrency/snapshots/task_graph.jsonc index 9dd2c8447..66eb33c62 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/parallel_and_concurrency/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/parallel_and_concurrency/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -194,7 +194,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/pnpm_workspace_packages_optional/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/pnpm_workspace_packages_optional/snapshots/task_graph.jsonc index 48a036335..cd26c6a37 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/pnpm_workspace_packages_optional/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/pnpm_workspace_packages_optional/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/recursive_topological_workspace/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/recursive_topological_workspace/snapshots/task_graph.jsonc index faa37f82c..6c1092e17 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/recursive_topological_workspace/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/recursive_topological_workspace/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -194,7 +194,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -235,7 +235,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -276,7 +276,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -317,7 +317,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks/snapshots/task_graph.jsonc index 4fa9288d1..08e9e71b8 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -194,7 +194,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -235,7 +235,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_disabled/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_disabled/snapshots/task_graph.jsonc index 7e9ae1253..3ec151443 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_disabled/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_disabled/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_nested_run/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_nested_run/snapshots/task_graph.jsonc index 159f52580..02908d5de 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_nested_run/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_nested_run/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_task_no_hook/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_task_no_hook/snapshots/task_graph.jsonc index dd84ccf32..7d4bf2b8e 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_task_no_hook/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/script_hooks_task_no_hook/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/query_shell_fallback_for_pipe_command.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/query_shell_fallback_for_pipe_command.jsonc index cfb4bd0eb..a1f7eabac 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/query_shell_fallback_for_pipe_command.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/query_shell_fallback_for_pipe_command.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/task_graph.jsonc index cf06df8bd..57808e563 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/shell_fallback/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_parent_cache_false_does_not_affect_expanded_query_tasks.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_parent_cache_false_does_not_affect_expanded_query_tasks.jsonc index c4ea94550..ceacf295d 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_parent_cache_false_does_not_affect_expanded_query_tasks.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_parent_cache_false_does_not_affect_expanded_query_tasks.jsonc @@ -85,7 +85,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_script_cache_false_does_not_affect_expanded_synthetic_cache.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_script_cache_false_does_not_affect_expanded_synthetic_cache.jsonc index 43a5ee254..96b699167 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_script_cache_false_does_not_affect_expanded_synthetic_cache.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_script_cache_false_does_not_affect_expanded_synthetic_cache.jsonc @@ -85,7 +85,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_untrackedEnv_inherited_by_synthetic.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_untrackedEnv_inherited_by_synthetic.jsonc index 8b1ac16ea..cacbc2708 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_untrackedEnv_inherited_by_synthetic.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_untrackedEnv_inherited_by_synthetic.jsonc @@ -61,7 +61,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_with_cache_true_enables_synthetic_cache.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_with_cache_true_enables_synthetic_cache.jsonc index ed4410aff..c00d72517 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_with_cache_true_enables_synthetic_cache.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/query_task_with_cache_true_enables_synthetic_cache.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/task_graph.jsonc index a756b187a..e9460be02 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_cache_disabled/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -136,7 +136,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -178,7 +178,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -219,7 +219,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/query_synthetic_in_subpackage.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/query_synthetic_in_subpackage.jsonc index c33fba388..d37e08845 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/query_synthetic_in_subpackage.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/query_synthetic_in_subpackage.jsonc @@ -85,7 +85,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/task_graph.jsonc index 266bbc495..03f7564bc 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/synthetic_in_subpackage/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_cd.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_cd.jsonc index 832f81a7b..817d8c341 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_cd.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_cd.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -128,7 +128,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -196,7 +196,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_shorthand.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_shorthand.jsonc index ee4e8ba36..2b63af122 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_shorthand.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_shorthand.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -128,7 +128,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -196,7 +196,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_unbalanced_quotes.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_unbalanced_quotes.jsonc index f030cbed3..2e0757cd8 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_unbalanced_quotes.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_unbalanced_quotes.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -128,7 +128,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_with_and.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_with_and.jsonc index 7f69f02f8..a8f65064b 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_with_and.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_array_with_and.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -128,7 +128,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -196,7 +196,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_nested_vt_array.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_nested_vt_array.jsonc index 23d89d1c8..c4f1f471a 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_nested_vt_array.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_nested_vt_array.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_object_array_depends_on.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_object_array_depends_on.jsonc index d1abf688f..f59d24052 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_object_array_depends_on.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_object_array_depends_on.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -128,7 +128,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -196,7 +196,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -285,7 +285,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_string_shorthand.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_string_shorthand.jsonc index 34f1adcbb..bd0e616c8 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_string_shorthand.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/query_string_shorthand.jsonc @@ -60,7 +60,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/task_graph.jsonc index 8d02b6b49..8addf06f3 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/task_command_shorthands/snapshots/task_graph.jsonc @@ -32,7 +32,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -75,7 +75,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -117,7 +117,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -159,7 +159,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -201,7 +201,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -244,7 +244,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -290,7 +290,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/transitive_skip_intermediate/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/transitive_skip_intermediate/snapshots/task_graph.jsonc index cdba69027..a7a5691cd 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/transitive_skip_intermediate/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/transitive_skip_intermediate/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/vpr_shorthand/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/vpr_shorthand/snapshots/task_graph.jsonc index fc12e3616..8294ecf54 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/vpr_shorthand/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/vpr_shorthand/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_filter_from_root.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_filter_from_root.jsonc index 66861f095..de366c117 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_filter_from_root.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_filter_from_root.jsonc @@ -66,7 +66,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_in_subpackage.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_in_subpackage.jsonc index cc8db43c4..f161b1982 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_in_subpackage.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/query_dev_in_subpackage.jsonc @@ -66,7 +66,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/task_graph.jsonc index 9c7e04414..41f7a4b59 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_cd_no_skip/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_cd_no_skip/snapshots/task_graph.jsonc index b970e4c84..afd8ff708 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_cd_no_skip/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_cd_no_skip/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_depends_on_passthrough/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_depends_on_passthrough/snapshots/task_graph.jsonc index 989bb17aa..26dd28a19 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_depends_on_passthrough/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_depends_on_passthrough/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -76,7 +76,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -117,7 +117,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -158,7 +158,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_multi_command/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_multi_command/snapshots/task_graph.jsonc index 499b87c67..7cdf9fdd7 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_multi_command/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_multi_command/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_mutual_recursion/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_mutual_recursion/snapshots/task_graph.jsonc index 396059783..912b51ced 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_mutual_recursion/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_mutual_recursion/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -153,7 +153,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_no_package_json/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_no_package_json/snapshots/task_graph.jsonc index ffeb873b5..035f68f5c 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_no_package_json/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_no_package_json/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } diff --git a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_self_reference/snapshots/task_graph.jsonc b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_self_reference/snapshots/task_graph.jsonc index 3d8d8bfd5..c3ecc2d5c 100644 --- a/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_self_reference/snapshots/task_graph.jsonc +++ b/crates/vite_task_plan/tests/plan_snapshots/fixtures/workspace_root_self_reference/snapshots/task_graph.jsonc @@ -30,7 +30,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -71,7 +71,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] } @@ -112,7 +112,7 @@ "negative_globs": [] }, "output_config": { - "includes_auto": false, + "includes_auto": true, "positive_globs": [], "negative_globs": [] }