1.0.6 • Published 13 days ago

@dkshs/changelog-github v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
13 days 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

13 days ago

1.0.5

2 months ago

1.0.4-test

5 months ago

1.0.4

5 months ago

1.0.3

5 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago

0.0.6

6 months ago

0.0.5

6 months ago

0.0.4

6 months ago

0.0.3

6 months ago

0.0.2

6 months ago

0.0.1

6 months ago