diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-15 19:15:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 19:15:39 -0500 |
commit | 4e72ca313a8fa1d826783bdc5657937da97d590c (patch) | |
tree | 254bb4074df8a8dfe42200bc0e613b7e082651f3 /cli/tools/registry/tar.rs | |
parent | 3ff80eb1521c49a43e0fae53840e5a636571ebfe (diff) |
refactor: use globbing from deno_config (#21925)
Diffstat (limited to 'cli/tools/registry/tar.rs')
-rw-r--r-- | cli/tools/registry/tar.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/registry/tar.rs b/cli/tools/registry/tar.rs index 218e4f67e..6eaaf1095 100644 --- a/cli/tools/registry/tar.rs +++ b/cli/tools/registry/tar.rs @@ -12,8 +12,8 @@ use std::path::Path; use std::path::PathBuf; use tar::Header; -use crate::util::glob::PathOrPatternSet; use crate::util::import_map::ImportMapUnfurler; +use deno_config::glob::PathOrPatternSet; #[derive(Debug, Clone, PartialEq)] pub struct PublishableTarballFile { |