@geut/chast

3.2.6 • Public • Published

chast

Unist compatible spec for changelogs and helpers to nodes creation

Structure

interface Root <: Node {
  children: [Preface, Release*]
}
interface Preface <: Node {
  children: [Node]
}
interface Release <: Node {
  identifier: string,
  version: string,
  url: string?
  yanked: boolean?
  unreleased: boolean?
  children: [Action]
}
interface Action <: Node {
  name: string
  children: [Change*, Group*]
}
interface Group <: Node {
  name: string,
  children: [Change]
}
interface Change <: Node {
  children: [Node]
}

/@geut/chast/

    Package Sidebar

    Install

    npm i @geut/chast

    Weekly Downloads

    713

    Version

    3.2.6

    License

    ISC

    Unpacked Size

    4.17 kB

    Total Files

    5

    Last publish

    Collaborators

    • geutuser
    • the-real-dk
    • tinchoz49
    • estebanprimost