Skip to content

Commit

Permalink
fix: disable github plugin, use changelogithub
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Feb 17, 2024
1 parent 1a67397 commit 78a2ab1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ Run release-it with pnpm workspace

## What it does

1. Disable built-in `npm` and `version` plugins
1. guard with [should-semantic-release](https://github.com/JoshuaKGoldberg/should-semantic-release)
1. Disable built-in `npm`, `version`, `github` plugins
1. Guard with [should-semantic-release](https://github.com/JoshuaKGoldberg/should-semantic-release)
1. Provide recommended version automatically (code and idea from [conventional-changelog](https://github.com/release-it/conventional-changelog))
1. support `preMajor` option
1. Bump all packages to the new version
1. Run `pnpm -r publish --access public --no-git-checks --tag ${tag}`
1. Run `npx changelogithub` for github release

## Example

Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ReleaseItPnpmPlugin extends Plugin {
}

static disablePlugin() {
return ['npm', 'version']
return ['npm', 'version', 'github']
}

constructor(...args) {
Expand Down

0 comments on commit 78a2ab1

Please sign in to comment.