-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,8 @@ use pacquet_testing_utils::{ | |
use pipe_trait::Pipe; | ||
use std::{ | ||
fs::{self, OpenOptions}, | ||
io::Write, path::Path, | ||
io::Write, | ||
path::Path, | ||
}; | ||
|
||
#[test] | ||
|
@@ -183,7 +184,7 @@ fn should_install_circular_dependencies() { | |
|
||
eprintln!("Executing command..."); | ||
pacquet.with_arg("install").assert().success(); | ||
|
||
assert!(workspace.join("./node_modules/@pnpm.e2e/circular-deps-1-of-2").exists()); | ||
assert!(workspace.join("./node_modules/.pnpm/@[email protected]").exists()); | ||
assert!(workspace.join("./node_modules/.pnpm/@[email protected]").exists()); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
use crate::InstallPackageFromRegistry; | ||
use async_recursion::async_recursion; | ||
use futures_util::future; | ||
use dashmap::DashSet; | ||
use futures_util::future; | ||
use node_semver::Version; | ||
use pacquet_network::ThrottledClient; | ||
use pacquet_npmrc::Npmrc; | ||
|
@@ -11,7 +11,7 @@ use pacquet_tarball::MemCache; | |
use pipe_trait::Pipe; | ||
|
||
/// In-memory cache for packages that have started resolving dependencies. | ||
/// | ||
/// | ||
/// The contents of set is the package's virtual_store_name. | ||
/// e.g. @pnpm.e2e/[email protected] -> @[email protected] | ||
pub type ResolvedPackages = DashSet<String>; | ||
|