summaryrefslogtreecommitdiff
path: root/tools/release/02_publish_crates.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-03-16 20:33:14 -0400
committerGitHub <noreply@github.com>2022-03-16 20:33:14 -0400
commit92bb25105822d0def65aa89ee5141c862ac7a3e4 (patch)
treec3bceebc7da2e90165c985da9f2836ad4808449f /tools/release/02_publish_crates.ts
parentf7ab41583e2bb4425ce7ac89b123089d0f07836a (diff)
chore: release script should automatically figure out CLI crate dependencies (#13992)
Diffstat (limited to 'tools/release/02_publish_crates.ts')
-rwxr-xr-xtools/release/02_publish_crates.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/release/02_publish_crates.ts b/tools/release/02_publish_crates.ts
index 1bb02f460..5910827c3 100755
--- a/tools/release/02_publish_crates.ts
+++ b/tools/release/02_publish_crates.ts
@@ -6,7 +6,9 @@ import { getCratesPublishOrder } from "./deps.ts";
const workspace = await DenoWorkspace.load();
const cliCrate = workspace.getCliCrate();
-const dependencyCrates = getCratesPublishOrder(workspace.getDependencyCrates());
+const dependencyCrates = getCratesPublishOrder(
+ workspace.getCliDependencyCrates(),
+);
try {
for (const [i, crate] of dependencyCrates.entries()) {