UNPKG

@changesets/parse

Version:

Parse a changeset file's contents into a usable json object

6 lines (5 loc) 158 B
import { Release } from "@changesets/types"; export default function parseChangesetFile(contents: string): { summary: string; releases: Release[]; };