deno/tools/release/05_create_release_notes.ts
2024-01-01 19:58:21 +00:00

12 lines
481 B
TypeScript
Executable file

#!/usr/bin/env -S deno run -A --lock=tools/deno.lock.json
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { $ } from "./deps.ts";
import { DenoWorkspace } from "./deno_workspace.ts";
const workspace = await DenoWorkspace.load();
// create a release notes file for the GH release draft
$.path(DenoWorkspace.rootDirPath)
.join("./target/release/release-notes.md")
.writeTextSync(workspace.getReleasesMdFile().getLatestReleaseText().fullText);