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/05_create_release_notes.ts

12 lines
481 B
TypeScript
Raw Normal View History

#!/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
2023-04-02 13:53:52 -04:00
$.path(DenoWorkspace.rootDirPath)
.join("./target/release/release-notes.md")
.writeTextSync(workspace.getReleasesMdFile().getLatestReleaseText().fullText);