1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tools/release/02_publish_dependency_crates.ts
Kitson Kelly f27902e749
1.14.1
2021-09-22 08:44:46 +10:00

17 lines
627 B
TypeScript
Executable file

#!/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 = 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");
}