Skip to content

feat: test app with Next.js #2640

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
refactor: use lodash-es for ES Modules support
Robbert committed Nov 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit db8462d3bface3ce8d1d7fcd8748bf6e9688190c
4 changes: 2 additions & 2 deletions packages/components-react/calendar-react/package.json
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.1",
"@types/jest": "29.5.13",
"@types/lodash.chunk": "4.2.9",
"@types/lodash-es": "4.17.12",
"@types/react": "18.3.3",
"@types/testing-library__jest-dom": "5.14.9",
"jest": "29.7.0",
@@ -66,6 +66,6 @@
"@utrecht/calendar-css": "workspace:*",
"clsx": "2.1.1",
"date-fns": "2.30.0",
"lodash.chunk": "4.2.0"
"lodash-es": "4.17.21"
}
}
2 changes: 1 addition & 1 deletion packages/components-react/calendar-react/src/index.tsx
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ import {
startOfWeek,
} from 'date-fns';
import { enUS } from 'date-fns/locale';
import chunk from 'lodash.chunk';
import chunk from 'lodash-es/chunk';
import { useState } from 'react';
import { CalendarNavigation } from './CalendarNavigation';
import { CalendarNavigationButtons } from './CalendarNavigationButtons';