Skip to content
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

fix(deps): update dependencies #967

Merged
merged 1 commit into from
Feb 19, 2024
Merged
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
4 changes: 2 additions & 2 deletions content-sample/package.json
Original file line number Diff line number Diff line change
@@ -13,8 +13,8 @@
"dependencies": {
"eslint": "8.56.0",
"eslint-plugin-mdx": "3.1.5",
"husky": "9.0.7",
"prettier": "3.2.4",
"husky": "9.0.11",
"prettier": "3.2.5",
"remark-preset-lint-consistent": "5.1.2",
"remark-preset-lint-markdown-style-guide": "5.1.3",
"remark-preset-lint-recommended": "6.1.3",
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -22,10 +22,10 @@
"@emotion/styled": "11.11.0",
"@mdx-js/mdx": "2.3.0",
"@mdx-js/react": "2.3.0",
"@mui/icons-material": "5.15.6",
"@mui/lab": "5.0.0-alpha.162",
"@mui/material": "5.15.6",
"@sentry/browser": "7.98.0",
"@mui/icons-material": "5.15.10",
"@mui/lab": "5.0.0-alpha.165",
"@mui/material": "5.15.10",
"@sentry/browser": "7.101.1",
"bicstone": "1.0.0",
"date-fns": "2.30.0",
"date-fns-tz": "2.0.0",
@@ -47,14 +47,14 @@
"gatsby-transformer-sharp": "5.13.1",
"gatsby-transformer-yaml": "5.13.1",
"github-slugger": "2.0.0",
"html-react-parser": "5.1.1",
"html-react-parser": "5.1.7",
"prism-themes": "1.9.0",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.12",
"react-hotkeys-hook": "4.4.4",
"react-virtuoso": "4.6.3"
"react-hotkeys-hook": "4.5.0",
"react-virtuoso": "4.7.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
295 changes: 148 additions & 147 deletions yarn.lock

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


Unchanged files with check annotations Beta

showYear = false,
...props
}: TimelineArticleCardProps): JSX.Element => {
const date = formatDateTime(item.date, showYear ? "yyyy/MM/dd" : "M月d日");

Check warning on line 53 in src/features/Timeline/TimelineArticleCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
return (
<StyledTimelineCard
...props
}: TimelineCertificationCardProps): JSX.Element => {
const dateFormatted = formatDateTime(
item.date,

Check warning on line 55 in src/features/Timeline/TimelineCertificationCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
showYear ? "yyyy/MM/dd" : "M月d日",
);
const endDateFormatted = formatDateTime(
item.endDate,

Check warning on line 59 in src/features/Timeline/TimelineCertificationCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
showYear ? "yyyy/MM/dd" : "yy年M月d日",
);
const subTitle =
showYear = false,
...props
}: TimelineHistoryCardProps): JSX.Element => {
const date = formatDateTime(item.date, showYear ? "yyyy/MM" : "M月");

Check warning on line 53 in src/features/Timeline/TimelineHistoryCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
return (
<StyledTimelineCard
showYear = false,
...props
}: TimelineMdxCardProps): JSX.Element => {
const date = formatDateTime(item.date, showYear ? "yyyy/MM/dd" : "M月d日");

Check warning on line 53 in src/features/Timeline/TimelineMdxCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
return (
<StyledTimelineCard
showYear = false,
...props
}: TimelineNoteCardProps): JSX.Element => {
const date = formatDateTime(item.date, showYear ? "yyyy/MM/dd" : "M月d日");

Check warning on line 53 in src/features/Timeline/TimelineNoteCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
return (
<StyledTimelineCard
showYear = false,
...props
}: TimelineOssCardProps): JSX.Element => {
const date = formatDateTime(item.date, showYear ? "yyyy/MM" : "M月");

Check warning on line 53 in src/features/Timeline/TimelineOssCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
return (
<StyledTimelineCard
}: TimelineProjectCardProps): JSX.Element => {
const endDateFormat =
item.fields.dateYear === item.fields.endDateYear ? "M月" : "yy年M月";
const dateFormatted = formatDateTime(item.date, showYear ? "yyyy/MM" : "M月");

Check warning on line 60 in src/features/Timeline/TimelineProjectCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
const endDateFormatted = formatDateTime(
item.endDate,

Check warning on line 62 in src/features/Timeline/TimelineProjectCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
showYear ? "yyyy/MM" : endDateFormat,
);
const subTitle =
showYear = false,
...props
}: TimelineSlideCardProps): JSX.Element => {
const date = formatDateTime(item.date, showYear ? "yyyy/MM/dd" : "M月d日");

Check warning on line 53 in src/features/Timeline/TimelineSlideCard.tsx

GitHub Actions / test

Unsafe argument of type `any` assigned to a parameter of type `string`
return (
<StyledTimelineCard