chore(template-sync): Next 16, Mantine 9.2, padded storybook, automated release#29
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR syncs the repo with an updated Mantine extension template: upgrading the docs stack to Next 16 and Mantine 9.2, refreshing toolchain dependencies, and replacing the interactive “open release page” flow with a GitHub CLI–driven automated release creation.
Changes:
- Upgrade Next.js/Mantine/React and various build/tooling dependencies (lockfile + workspace manifests).
- Update the release script to generate GitHub release notes via
ghand create the release automatically. - Update docs config and site links (Undolog link →
gfazioli.github.io) and adjust docs TypeScript JSX setting.
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 | Locks upgraded dependency graph for Next 16, Mantine 9.2, toolchain updates, and removed packages. |
| scripts/release.ts | Switches release flow to GitHub CLI (gh api generate-notes + gh release create) and adds changelog extraction logic. |
| package.json | Bumps devDependencies (Mantine, React, Rollup, esbuild, etc.) and removes open / new-github-release-url. |
| docs/tsconfig.json | Changes JSX setting to react-jsx. |
| docs/package.json | Upgrades docs dependencies to Next 16 / Mantine 9.2 / React 19.2.6. |
| docs/next.config.mjs | Updates MDX remark plugin configuration and removes Next build-time ESLint ignore. |
| docs/components/Shell/Shell.tsx | Changes the header logo link destination to gfazioli.github.io. |
| docs/components/Footer/Footer.tsx | Changes footer “Made with…” link destination to gfazioli.github.io. |
Comments suppressed due to low confidence (1)
docs/components/Shell/Shell.tsx:72
- This link now points to
gfazioli.github.io, but thearia-label/titlestill say "Undolog". For accessibility, the accessible name should describe the actual destination/brand; please update the label/title (or revert the URL) to keep them consistent.
component="a"
href="https://gfazioli.github.io/"
target="_blank"
rel="noreferrer"
aria-label="Undolog"
title="Undolog"
variant="transparent"
Comment on lines
+13
to
+19
| function extractChangelogBody(changelogPath: string): string { | ||
| if (!fs.existsSync(changelogPath)) { | ||
| signale.error( | ||
| `${chalk.cyan('CHANGELOG.md')} not found. Generate it before running the release script.` | ||
| ); | ||
| process.exit(1); | ||
| } |
| Made with ❤️ by{' '} | ||
| <Anchor fz={13} href="https://undolog.com/"> | ||
| <Anchor fz={13} href="https://gfazioli.github.io/"> | ||
| 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.