chore(template-sync): Next 16, Mantine 9.2, padded storybook, automated release#13
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR syncs the project template by updating core tooling/dependencies (Next.js, Mantine, Storybook, build tools) and modernizing the release workflow to create GitHub releases automatically from changelog content and GitHub-generated notes.
Changes:
- Bump ecosystem/tooling versions (Next.js 16.2.6, Mantine 9.2.0, Storybook 10.3.6, Rollup/esbuild, etc.) and refresh
yarn.lock. - Update Storybook preview layout from
centeredtopadded. - Replace the “open GitHub release URL” flow with an automated
gh release createflow that composes notes fromCHANGELOG.md+ GitHub auto-notes.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Locks updated dependency graph for the template sync (Next/Mantine/Storybook/tooling updates). |
| package.json | Updates devDependencies to match the template sync (Mantine 9.2, Storybook 10.3.6, Next toolchain versions, etc.). |
| scripts/release.ts | Refactors release script to generate notes and create GitHub releases via gh. |
| docs/tsconfig.json | Updates JSX emit setting for the docs TypeScript config. |
| docs/package.json | Updates docs app dependencies to Next 16 / Mantine 9.2 / React 19.2.6, etc. |
| docs/next.config.mjs | Adjusts MDX remark plugin configuration and removes build-time eslint ignore. |
| docs/components/Shell/Shell.tsx | Updates external link to gfazioli.github.io. |
| docs/components/Footer/Footer.tsx | Updates author link to gfazioli.github.io. |
| .storybook/preview.tsx | Switches Storybook layout to padded. |
Comment on lines
+167
to
+169
|
|
||
| await run( | ||
| $`gh release create ${nextVersion} --repo ${repoSlug} --target master --title ${autoNotes.name} --notes ${releaseBody}`, |
Comment on lines
66
to
70
| component="a" | ||
| href="https://undolog.com/" | ||
| href="https://gfazioli.github.io/" | ||
| target="_blank" | ||
| rel="noreferrer" | ||
| aria-label="Undolog" |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Template sync: Next 16, Mantine 9.2, storybook padded, Undolog -> gfazioli.github.io, automated release script.