chore(template-sync): Next 16, Mantine 9.2, padded storybook, automated release#3
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Template sync update to align the repo with newer tooling/runtime versions (Next 16, Mantine 9.2, Storybook layout tweaks) and to automate GitHub release creation from the release script.
Changes:
- Bumped core tooling/dependencies (Next 16.2.6, Mantine 9.2.0, Storybook 10.3.6, etc.) and updated
yarn.lockaccordingly. - Reworked
scripts/release.tsto create GitHub releases viaghCLI (changelog extraction + auto-generated notes). - Updated docs/Storybook configuration (MDX/TS config, layout, and site links).
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Locks updated dependency graph for the template sync (Next/Mantine/Storybook/tooling updates). |
| scripts/release.ts | Automates GitHub release creation using gh api notes generation and changelog extraction. |
| package.json | Updates devDependencies to match the template sync versions (Next/Mantine/Storybook/tooling). |
| docs/tsconfig.json | Adjusts JSX emit mode for the docs TypeScript config. |
| docs/package.json | Updates docs app dependencies (Next 16, Mantine 9.2, React 19.2.6, etc.). |
| docs/next.config.mjs | Updates MDX/remark plugin configuration and removes build ESLint ignore. |
| docs/components/Shell/Shell.tsx | Updates external link from undolog.com to gfazioli.github.io. |
| docs/components/Footer/Footer.tsx | Updates external link from undolog.com to gfazioli.github.io. |
| .storybook/preview.tsx | Changes Storybook layout from centered to padded. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
5
to
9
| const withMDX = createMDX({ | ||
| options: { | ||
| remarkPlugins: [remarkSlug], | ||
| remarkPlugins: ['remark-slug'], | ||
| }, | ||
| }); |
Comment on lines
+160
to
+163
| const tags = await git.tags(); | ||
| const previousTag = tags.all.includes(nextVersion) | ||
| ? tags.all[tags.all.indexOf(nextVersion) - 1] | ||
| : tags.latest; |
Comment on lines
+168
to
+170
| await run( | ||
| $`gh release create ${nextVersion} --repo ${repoSlug} --target master --title ${autoNotes.name} --notes ${releaseBody}`, | ||
| { |
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.