summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-11-24 00:38:07 +0100
committerGitHub <noreply@github.com>2023-11-23 23:38:07 +0000
commit585cf2de89f1d253bc14e0835790445d14e324f3 (patch)
tree901234e85d502d960c0cb3126367ca78d17b3225 /cli/main.rs
parent778e4c971077e38bf8f7d03b8b299d3dd111ba22 (diff)
feat(unstable): tar up directory with deno.json (#21228)
Co-authored-by: David Sherret <dsherret@gmail.com> Co-authored-by: Luca Casonato <lucacasonato@yahoo.com> Co-authored-by: Luca Casonato <hello@lcas.dev>
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 6c5a78e61..1fa4ee851 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -204,6 +204,10 @@ async fn run_subcommand(flags: Flags) -> Result<i32, AnyError> {
DenoSubcommand::Vendor(vendor_flags) => spawn_subcommand(async {
tools::vendor::vendor(flags, vendor_flags).await
}),
+ // TODO:
+ DenoSubcommand::Publish(publish_flags) => spawn_subcommand(async {
+ tools::registry::publish(flags, publish_flags).await
+ }),
};
handle.await?