chore(template-sync): Next 16, Mantine 9.2, padded storybook, automated release#18
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Template sync PR that updates the repo’s toolchain and docs stack (Next.js + Mantine + Storybook) and replaces the prior “open GitHub release URL” flow with an automated GitHub release creation step in the release script.
Changes:
- Upgrade dependencies (Next.js 16.2.6, Mantine 9.2.0, Storybook 10.3.6, React 19.2.6, and related tooling).
- Update Storybook preview layout to
paddedand update docs links fromundolog.comtogfazioli.github.io. - Rework
scripts/release.tsto create GitHub releases viagh(generate notes + notes body composition).
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Lockfile updates reflecting dependency/toolchain upgrades. |
| scripts/release.ts | Automates GitHub release creation via gh and adds changelog extraction + generated notes. |
| package.json | Bumps devDependencies to newer Next/Mantine/Storybook/tooling versions; removes open/new-github-release-url. |
| docs/package.json | Updates docs workspace dependencies (Next 16, Mantine 9.2, React 19.2.6, TS 6.0.3, etc.). |
| docs/next.config.mjs | Updates MDX config and removes build-time ESLint ignore. |
| docs/components/Shell/Shell.tsx | Updates external link target. |
| docs/components/Footer/Footer.tsx | Updates external link target. |
| .storybook/preview.tsx | Switches Storybook layout from centered to padded. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+157
to
+158
| const changelogBody = extractChangelogBody(path.join(process.cwd(), 'CHANGELOG.md')); | ||
| const repoSlug = parseRepoSlug(packageJson.repository.url || packageJson.repository); |
Comment on lines
5
to
8
| const withMDX = createMDX({ | ||
| options: { | ||
| remarkPlugins: [remarkSlug], | ||
| remarkPlugins: ['remark-slug'], | ||
| }, |
Comment on lines
+54
to
+55
| const result = await $`gh api ${args}`.quiet(); | ||
| return JSON.parse(result.stdout); |
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.