blob: 9dd6253fe15a71365fbf3c669c19a346034af646 (
plain)
1
2
3
4
5
6
7
8
9
10
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();
}
|