@changesets/parse
TypeScript icon, indicating that this package has built-in type declarations

0.4.0 • Public • Published

@changesets/parse

View changelog

Parses a changeset from its written format to a data object.

import parse from "@changesets/parse";

const changeset = `---
"@changesets/something": minor
"@changesets/something-else": patch
---

A description of a minor change`;

const parsedChangeset = parse(changeset);

For example, it can convert:

---
"@changesets/something": minor
"@changesets/something-else": patch
---

A description of a minor change

to

{
  "summary": "A description of a minor change",
  "releases": [
    { "name": "@changesets/something", "type": "minor" },
    { "name": "@changesets/something-else", "type": "patch" }
  ]
}

Note that this is not quite a complete Changeset for most tools as it lacks an id.

For written changesets, the id is normally given as the file name, which parse is not aware of.

Readme

Keywords

none

Package Sidebar

Install

npm i @changesets/parse

Weekly Downloads

623,769

Version

0.4.0

License

MIT

Unpacked Size

18.8 kB

Total Files

15

Last publish

Collaborators

  • andarist
  • emmatown
  • noviny
  • changesets-release-bot