From f92cc66f0dbf8e9753f2e98d4469190f3b561eb0 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 14 Sep 2021 16:46:36 -0400 Subject: 1.14.0 (#12074) --- tools/release/02_publish_dependency_crates.ts | 11 +++++++++++ tools/release/02_publish_depenency_crates.ts | 11 ----------- 2 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 tools/release/02_publish_dependency_crates.ts delete mode 100644 tools/release/02_publish_depenency_crates.ts (limited to 'tools/release') 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(); +} diff --git a/tools/release/02_publish_depenency_crates.ts b/tools/release/02_publish_depenency_crates.ts deleted file mode 100644 index 9dd6253fe..000000000 --- a/tools/release/02_publish_depenency_crates.ts +++ /dev/null @@ -1,11 +0,0 @@ -#!/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(); -} -- cgit v1.2.3