Skip to content

Commit

Permalink
feat: create changelog (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
imevanc authored Aug 30, 2024
1 parent 463e1ed commit 2f8c8ff
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
18 changes: 18 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
branches: ["main"],
plugins: [
"@semantic-release/commit-analyzer", // Analyze commits to determine the version bump (major, minor, patch)
"@semantic-release/release-notes-generator", // Generate release notes based on the commits
"@semantic-release/changelog", // Write release notes to the CHANGELOG.md
"@semantic-release/npm", // Update the version in package.json
"@semantic-release/github", // Publish a release in GitHub
[
"@semantic-release/git",
{
assets: ["package.json", "CHANGELOG.md"],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
],
};
1 change: 0 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const navigation = [

const Home: NextPage = () => {
const [mobileMenuOpen, setMobileMenuOpen] = useState<boolean>(false);

return (
<div className="bg-gray-900">
<header className="absolute inset-x-0 top-0 z-50">
Expand Down

0 comments on commit 2f8c8ff

Please sign in to comment.