summaryrefslogtreecommitdiff
path: root/tools/release/02_publish_dependency_crates.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/02_publish_dependency_crates.ts')
-rw-r--r--tools/release/02_publish_dependency_crates.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/release/02_publish_dependency_crates.ts b/tools/release/02_publish_dependency_crates.ts
new file mode 100644
index 000000000..9dd6253fe
--- /dev/null
+++ b/tools/release/02_publish_dependency_crates.ts
@@ -0,0 +1,11 @@
+#!/usr/bin/env -S deno run --allow-read --allow-write --allow-run=cargo --allow-net=crates.io
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+import { DenoWorkspace, getCratesPublishOrder } from "./helpers/mod.ts";
+
+const workspace = await DenoWorkspace.load();
+
+const dependencyCrates = workspace.getDependencyCrates();
+
+for (const crate of getCratesPublishOrder(dependencyCrates)) {
+ await crate.publish();
+}