chore(template-sync): Next 16, Mantine 9.2, padded storybook, automated release#26
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Template sync to bring the repo’s tooling/docs up to date (Next 16, Mantine 9.2, Storybook update) and to switch the release flow to an automated GitHub Release creation via gh.
Changes:
- Updated core toolchain and UI dependencies (Next 16.2.6, Mantine 9.2.0, Storybook 10.3.6, etc.) and refreshed
yarn.lock. - Reworked
scripts/release.tsto generate release notes (CHANGELOG + GitHub auto-notes) and publish a GitHub Release viagh. - Adjusted docs build configuration (TS
jsxmode, MDX config tweaks) and updated Undolog links.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Dependency graph refresh for Next/Mantine/Storybook/tooling upgrades. |
| scripts/release.ts | Automates GitHub release creation and release notes generation. |
| package.json | Bumps devDependencies aligned with the template sync (Mantine/Storybook/Next toolchain). |
| docs/tsconfig.json | Updates TS JSX transform setting for docs app. |
| docs/package.json | Updates docs app dependencies to Next 16 + Mantine 9.2. |
| docs/next.config.mjs | Updates MDX remark plugin configuration and removes eslint build ignore. |
| docs/components/Shell/Shell.tsx | Updates external link target. |
| docs/components/Footer/Footer.tsx | Updates external link target. |
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
+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.