|
match root { |
|
Some(root) => { |
|
self.run_workspace_fetch(&dirs, output, &manifest, root) |
|
.await |
|
} |
|
None => self.fetch_into_lock(&dirs, &manifest, output).await, |
|
} |
This will always call run_workspace_fetch if one can path to an ancestor manifest that is a workspace.
wasm-pkg-tools/crates/wkg/src/wit.rs
Lines 180 to 186 in dfa2e17
This will always call
run_workspace_fetchif one can path to an ancestor manifest that is a workspace.