diff options
Diffstat (limited to 'tools/release/02_publish_dependency_crates.ts')
-rwxr-xr-x | tools/release/02_publish_dependency_crates.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/release/02_publish_dependency_crates.ts b/tools/release/02_publish_dependency_crates.ts deleted file mode 100755 index d210971a1..000000000 --- a/tools/release/02_publish_dependency_crates.ts +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env -S deno run --allow-read --allow-write --allow-run=cargo --allow-net=crates.io -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -import { DenoWorkspace } from "./deno_workspace.ts"; -import { getCratesPublishOrder } from "./deps.ts"; - -const workspace = await DenoWorkspace.load(); - -const dependencyCrates = getCratesPublishOrder(workspace.getDependencyCrates()); - -try { - for (const [i, crate] of dependencyCrates.entries()) { - await crate.publish(); - console.log(`Published ${i + 1} of ${dependencyCrates.length} crates.`); - } -} finally { - // system beep to notify error or completion - console.log("\x07"); -} |