1.0.6 • Published 1 year ago

@dkshs/changelog-github v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@dkshs/changelog-github

A changelog entry generator for changeset on GitHub with links to commits, PRs, and optionally users.

license mit NPM version

Getting Started

First Install the package:

npm i --save-dev @dkshs/changelog-github

And use it on .changeset/config.json:

{
  // ...
  "changelog": [
    "@dkshs/changelog-github", { "repo": "<org>/<repo>" }
  ]
  // ...
}

There is also an optional option, which is exclude, an object and can have the user,pr and commit keys and their values being boolean.

{
  // ...
  "changelog": [
    "@dkshs/changelog-github",
    {
      "repo": "<org>/<repo>",
      "exclude": { "user": true }
    }
  ]
  // ...
}

This option does not add the comment: "Thanks <@user>!".

And you can use to remove the pull releases:

{
  // ...
  "changelog": [
    "@dkshs/changelog-github",
    {
      "repo": "<org>/<repo>",
      "exclude": { "pr": true }
    }
  ]
  // ...
}

And to remove the commits:

{
  // ...
  "changelog": [
    "@dkshs/changelog-github",
    {
      "repo": "<org>/<repo>",
      "exclude": { "commit": true }
    }
  ]
  // ...
}
1.0.6

1 year ago

1.0.5

1 year ago

1.0.4-test

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago