summaryrefslogtreecommitdiff
path: root/tools/release/helpers/mod.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-08-25 09:02:22 -0400
committerGitHub <noreply@github.com>2021-08-25 09:02:22 -0400
commitdce70d32a47801025b3b67a97ec9ebed90dfc8a2 (patch)
treef08176bdad18f931956f24cd7d3b92ba313c4493 /tools/release/helpers/mod.ts
parentdccf4cbe36d66140f9e35a6ee755c3c440d745f9 (diff)
chore: add scripts for helping with a release (#11832)
Diffstat (limited to 'tools/release/helpers/mod.ts')
-rw-r--r--tools/release/helpers/mod.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/release/helpers/mod.ts b/tools/release/helpers/mod.ts
new file mode 100644
index 000000000..f9d23ac83
--- /dev/null
+++ b/tools/release/helpers/mod.ts
@@ -0,0 +1,10 @@
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+
+export * from "./cargo.ts";
+export * from "./crates_io.ts";
+export * from "./deno_workspace.ts";
+export {
+ formatGitLogForMarkdown,
+ getCratesPublishOrder,
+ getGitLogFromTag,
+} from "./helpers.ts";