Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Example-specific deps (e.g. `styled-components`, `glamor`, `react-frame-componen

Do not bump vite, @vitejs/plugin-react, next, or typescript in examples beyond the versions in the reference templates.

Exception: patch-level bumps within the template's major.minor are allowed to clear security advisories, for example `next` 15.5.7 to 15.5.22. Do not cross a minor or major boundary.

## Conventions

- PropTypes and TypeScript types are maintained in parallel: update both when changing props.
Expand Down
2 changes: 1 addition & 1 deletion examples/ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint": "next lint"
},
"dependencies": {
"next": "15.5.10",
"next": "15.5.22",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-spinners": "0.17.0",
Expand Down
208 changes: 113 additions & 95 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/core": "7.29.7",
"@babel/plugin-transform-runtime": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@eslint-react/eslint-plugin": "5.18.0",
"@eslint/js": "10.0.1",
"@faker-js/faker": "10.3.0",
Expand Down
15 changes: 14 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"**/examples/**"
],
"lockFileMaintenance": {
"enabled": true
"enabled": true,
"minimumReleaseAge": null
},
"minimumReleaseAge": "3 days",
"packageRules": [
Expand All @@ -32,6 +33,18 @@
],
"allowedVersions": "< 14.0.0"
},
{
"automerge": false,
"groupName": "eslint",
"matchPackageNames": [
"eslint",
"@eslint/**",
"@eslint-react/**",
"typescript-eslint",
"eslint-plugin-**",
"eslint-config-**"
]
},
{
"automerge": false,
"groupName": "react monorepo",
Expand Down
Loading