We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73eb4ec commit 734ab5eCopy full SHA for 734ab5e
1 file changed
crates/vite_task/src/install.rs
@@ -66,7 +66,11 @@ impl InstallCommand {
66
iter::once("install").chain(args.iter().map(String::as_str)),
67
ResolveCommandResult { bin_path: resolve_command.bin_path, envs: resolve_command.envs },
68
self.ignore_replay,
69
- None,
+ Some(vec![
70
+ "**/node_modules/**/*".into(),
71
+ "!**/node_modules/*".into(),
72
+ "!**/node_modules/**/package.json".into(),
73
+ ]),
74
)?;
75
let mut task_graph: StableGraph<ResolvedTask, ()> = Default::default();
76
task_graph.add_node(resolved_task);
0 commit comments