Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: grubersjoe/react-github-calendar
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 29135ac8c38821c014cfb83ddb60924a95f015c4
Choose a base ref
...
head repository: grubersjoe/react-github-calendar
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 06052914972073cf4dd07beabf62386b5ba0daa4
Choose a head ref
  • 3 commits
  • 13 files changed
  • 1 contributor

Commits on Dec 21, 2024

  1. Upgrade to React 19

    grubersjoe committed Dec 21, 2024
    Copy the full SHA
    0290ccb View commit details

Commits on Jan 5, 2025

  1. Update README

    grubersjoe authored Jan 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    227c4a0 View commit details
  2. Upgrades

    grubersjoe committed Jan 5, 2025
    Copy the full SHA
    0605291 View commit details
Showing with 1,224 additions and 989 deletions.
  1. +1 −1 README.md
  2. +8 −7 example/package.json
  3. +343 −303 example/pnpm-lock.yaml
  4. +1 −3 example/src/components/CodeBlock.tsx
  5. +5 −5 example/src/components/Docs.tsx
  6. +1 −1 example/src/components/Error.tsx
  7. +1 −1 example/src/components/ForkMe.tsx
  8. +2 −1 example/src/index.tsx
  9. +23 −15 package.json
  10. +812 −629 pnpm-lock.yaml
  11. +2 −2 src/index.tsx
  12. +17 −13 src/lib.ts
  13. +8 −8 tsconfig.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ Using this component inside CRA will lead to errors for reasons described in iss
[#105](https://github.com/grubersjoe/react-activity-calendar/issues/105) of
`react-activity-calendar`. This repo is not for CRA support questions. If you encounter issues, you
need to fix those yourself given the maintenance state of CRA. Personally, I would recommend using
[Vite](https://vitejs.dev/) instead of CRA.
[Vite](https://vitejs.dev/) instead of CRA. It offers everything that CRA does and more.

## Development

15 changes: 8 additions & 7 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-github-calendar-example",
"homepage": "https://grubersjoe.github.io/react-github-calendar/",
"version": "4.5.1",
"version": "4.5.2",
"license": "MIT",
"private": true,
"scripts": {
@@ -13,18 +13,19 @@
"react-error-boundary": "^4.1.2",
"react-github-btn": "^1.4.0",
"react-github-calendar": "link:..",
"react-router-dom": "^6.27.0",
"react-router": "^7.1.0",
"react-syntax-highlighter": "^15.6.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"react": "^18",
"react-dom": "^18.0.0",
"sass": "^1.82.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"vite": "^5.4.9"
"vite": "^6.0.5"
}
}
Loading