forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jquense#2084 from jquense/ci/buildRelease
ci: Fix package and changelog updates on release
- Loading branch information
Showing
3 changed files
with
39 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-big-calendar", | ||
"version": "0.23.0", | ||
"version": "0.38.2", | ||
"description": "Calendar! with events", | ||
"author": { | ||
"name": "Jason Quense", | ||
|
@@ -155,7 +155,5 @@ | |
"bugs": { | ||
"url": "https://github.com/jquense/react-big-calendar/issues" | ||
}, | ||
"readme": "ERROR: No README data found!", | ||
"homepage": "https://github.com/jquense/react-big-calendar#readme", | ||
"_id": "[email protected]" | ||
"homepage": "https://github.com/jquense/react-big-calendar#readme" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* https://dev.to/kouts/automated-versioning-and-package-publishing-using-github-actions-and-semantic-release-1kce | ||
* This is what ensures that our releases update the CHANGELOG.md | ||
* and commit those changes and a version change in the package.json | ||
*/ | ||
module.exports = { | ||
branches: ['master'], | ||
plugins: [ | ||
'@semantic-release/commit-analyzer', | ||
'@semantic-release/release-notes-generator', | ||
[ | ||
'@semantic-release/changelog', | ||
{ | ||
changelogFile: 'CHANGELOG.md', | ||
}, | ||
], | ||
'@semantic-release/npm', | ||
'@semantic-release/github', | ||
[ | ||
'@semantic-release/git', | ||
{ | ||
assets: ['CHANGELOG.md'], | ||
message: | ||
'chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}', | ||
}, | ||
], | ||
], | ||
} |