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

【河原】電気料金シミュレーションページの開発 #42

Open
wants to merge 643 commits into
base: master
Choose a base branch
from

Conversation

k-taro56
Copy link

@k-taro56 k-taro56 commented Nov 20, 2023

コーディングチャレンジの実装ができましたので、ご確認お願いいたします。

概要

create-next-app を使用してプロジェクトのセットアップをしました。

実装内容

  • React, Next.js (AppRouter), TypeScript で実装しています
  • コンテナープレゼンテーションパターンを採用しています
  • スタイルは @emotin/styled で指定しています
  • すべてのレイアウトは相対的に指定しています
  • ダークモードに対応しています
  • favicon は DALL·E で作成しました
  • 「結果を見る」ボタンの色は少し明るめにしています
  • husky
    • コミット前に Lint、フォーマット、テストを実行するようにしています
  • CI/CD
    • GitHub Actions で Lint、フォーマットチェック、テストの実行をしています
    • テスト結果は Codecov にアップロードしています
    • Dependabot を導入しています
    • GitHub Pages にデプロイしています
    • GitHub Pages にデプロイ用のビルドは静的ビルドにしています

追加の依存関係

  • husky 関連
    • コミット前にチェックを実行するために追加
  • jest 関連
    • テストのために追加
  • material-symbols
    • アイコンを使用するために追加
  • @emotion/styled
    • スタイルを指定するために追加

デプロイ先

https://k-taro56.github.io/coding-challenge/

} else {
setContractCapacityCompleted(false);
}
};

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

とある操作をしたら、電気代の値が入っていてもメールアドレスのフォームが出てこない状態になるようです。

image

どうしてかわかりますでしょうか。

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

複雑な状態を useState だけで管理しようとしているからですね。useReducer を使うように変更します。

width: 100%;
display: flex;
align-items: center;
justify-content: space-between;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ちょっと単位が遠いですかね?またkVAは選択肢の中に収めなかった理由はありますか?

image

指定のデザインはこちらです。
image

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ボックスの幅が小さくなっている理由

スタイルを共通化したときに、コード上の意味は変わっていないと思ってデザインの確認を怠ったことが原因です。スタイル共通化前は幅いっぱいになっていたかと思います。
プルリクエスト作成時にもデプロイをして、簡単にデザインを確認できるようにします。

指定のデザインではない理由

値がとびとびのとき、つまり単位がアンペアのときはドロップダウンリストが表示されるようになっています。ドロップダウンリストでは単位も選択肢に含まれています。
値が 1 ずつ増減する kVA では範囲が大きいこともあってキーボードで入力できるようにしています。スマホを前提とする場合こちらの方が簡単に入力できるかと思いました。

単位が入力欄からはみ出ている理由

数値だけを入力してもらうことを想定しているからです。

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

プルリクエストのコードを GitHubPages だけで確認しようとするのは、かなり難しそうでした。
他のデプロイ先も含めて考えます。

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ボックスの幅の件は修正できたかと思います。

Copy link
Member

@kenji7157 kenji7157 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

フロントエンドのチャレンジ提出ありがとうございました!

faviconやダークモード対応など要求事項以外の部分の対応ありがとうございます。
simulation-form.tsxが肥大化して複雑になっているので、react-hook-fromを使用する or ロジック・コンポーネントを分割する等検討してみると良いかと思いました。

諸々コメントしましたが、可能な範囲でご確認・ご対応していただければ大丈夫です!

'40A',
'50A',
'60A',
];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

配列・オブジェクトを定数化する場合はas constをすることで、要素の書き換えも禁止することができます。
https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-4.html#const-assertions

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ありがとうございます。対応します。

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

対応しました。

label='現在の電気の使用状況について教えてください'
isVisible={contractCapacityCompleted}
>
<FormWithUnit
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

こちらの入力項目は参考デザインのように幅を広げることは可能ですか?  

参考デザイン 実装
image image

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

最低料金未満が入力された場合は、「電気代を正しく入力してください。」とメッセージを表示する仕様になります。

image

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

最低料金があることをユーザーには通知しないということでよろしいでしょうか。

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

幅いっぱいになっていない件は修正します。

Copy link
Author

@k-taro56 k-taro56 Nov 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

幅いっぱいになっていない件は修正できたかと思います。

errorMessage={contractCapacityErrorMessage}
setErrorMessage={setContractCapacityErrorMessage}
/>
<FormWithUnit
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

kVAの場合に、SelectionFormを使わなかったのはなぜでしょうか?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

値が 1 ずつ増減する kVA では範囲が大きいこともあってキーボードで入力できるようにしています。スマホを前提とする場合こちらの方がたくさんある選択肢から選ぶ必要がなく、簡単に入力できるかと思いました。

const onInputValueChange = (inputValue: string) => {
setInputValue(inputValue);
if (!validateMailAddress(inputValue)) {
setMailAddressErrorMessage('メールアドレスを正しく入力してください');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

エラー文言の仕様は「メールアドレスを正しく入力してください。」になります。

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[email protected]が許容されていますが、こちらは期待通りの挙動でしょうか?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

エラー文言の仕様は「メールアドレスを正しく入力してください。」になります。

句点の付け忘れのご指摘でしょうか。

[email protected]が許容されていますが、こちらは期待通りの挙動でしょうか?

こちらは HTML の入力値検証で許容されていません。ただエラーメッセージが出ないので修正します。

isVisible={isVisible}
errorMessage={errorMessage}
>
<Input
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

参考デザインのように、郵便番号を分割して対応しなかった理由を教えてください。

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 度に入力できる利便性があり、自動入力を機能させるためです。
デザイン上は可能であれば分割しているようにしたいと思います。お待ちください。

formatPostCode(postCode?.toString() || ''),
);

const onInputValueChange = (inputValue: string) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

前半の郵便番号を削除するとカーソルが末尾に移動する挙動になっていますが、期待通りの挙動でしょうか?

Kapture.2023-11-28.at.09.32.32.mp4

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

意図通りではありませんね。
マスク化をしたいと考えておりますが、なかなかうまくいきません。

};

return (
<SimulationForm
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

東京エリアで入力項目を全て入力後に契約容量を変更した時にメールアドレスの入力欄が表示されませんでした。本コンポーネントが状態・ロジックを持ちすぎているので、バグが生まれやすそうです。コンポーネントを分割できると、保守性・可読性も上がると思います。

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

おっしゃる通り、複雑な状態を useState だけで管理しようとしているのはよくないですね。useReducer を使うように変更します。

k-taro56 and others added 27 commits January 4, 2024 15:35
…d_challenge_2/challenges/k-taro56/testing-library/jest-dom-6.2.0

Bump @testing-library/jest-dom from 6.1.6 to 6.2.0 in /frontend_challenge_2/challenges/k-taro56
Bumps [material-symbols](https://github.com/marella/material-symbols/tree/HEAD/material-symbols) from 0.14.3 to 0.14.4.
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.14.4/material-symbols)

---
updated-dependencies:
- dependency-name: material-symbols
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/material-symbols-0.14.4

Bump material-symbols from 0.14.3 to 0.14.4 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.46 to 18.2.47.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/react-18.2.47

Bump @types/react from 18.2.46 to 18.2.47 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.6 to 20.10.7.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-20.10.7

Bump @types/node from 20.10.6 to 20.10.7 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.7 to 20.10.8.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-20.10.8

Bump @types/node from 20.10.7 to 20.10.8 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.8 to 20.11.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-20.11.0

Bump @types/node from 20.10.8 to 20.11.0 in /frontend_challenge_2/challenges/k-taro56
Bumps [material-symbols](https://github.com/marella/material-symbols/tree/HEAD/material-symbols) from 0.14.4 to 0.14.5.
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.14.5/material-symbols)

---
updated-dependencies:
- dependency-name: material-symbols
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/material-symbols-0.14.5

Bump material-symbols from 0.14.4 to 0.14.5 in /frontend_challenge_2/challenges/k-taro56
Bumps [prettier](https://github.com/prettier/prettier) from 3.1.1 to 3.2.2.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.1.1...3.2.2)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/prettier-3.2.2

Bump prettier from 3.1.1 to 3.2.2 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.11.0 to 20.11.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-20.11.3

Bump @types/node from 20.11.0 to 20.11.3 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.47 to 18.2.48.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/react-18.2.48

Bump @types/react from 18.2.47 to 18.2.48 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.11.3 to 20.11.4.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-20.11.4

Bump @types/node from 20.11.3 to 20.11.4 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.11.4 to 20.11.5.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
…ns/cache-4

Bump actions/cache from 3 to 4
…d_challenge_2/challenges/k-taro56/types/node-20.11.5

Bump @types/node from 20.11.4 to 20.11.5 in /frontend_challenge_2/challenges/k-taro56
Bumps [next](https://github.com/vercel/next.js) from 14.0.4 to 14.1.0.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.0.4...v14.1.0)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
k-taro56 and others added 30 commits July 17, 2024 14:35
…d_challenge_2/challenges/k-taro56/types/node-20.14.11

chore(deps-dev): bump @types/node from 20.14.10 to 20.14.11 in /frontend_challenge_2/challenges/k-taro56
Bumps [husky](https://github.com/typicode/husky) from 9.0.11 to 9.1.1.
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.11...v9.1.1)

---
updated-dependencies:
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/husky-9.1.1

chore(deps-dev): bump husky from 9.0.11 to 9.1.1 in /frontend_challenge_2/challenges/k-taro56
Bumps [@emotion/styled](https://github.com/emotion-js/emotion) from 11.11.5 to 11.13.0.
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

---
updated-dependencies:
- dependency-name: "@emotion/styled"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/emotion/styled-11.13.0

chore(deps-dev): bump @emotion/styled from 11.11.5 to 11.13.0 in /frontend_challenge_2/challenges/k-taro56
Bumps [husky](https://github.com/typicode/husky) from 9.1.1 to 9.1.2.
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.1...v9.1.2)

---
updated-dependencies:
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/husky-9.1.2

chore(deps-dev): bump husky from 9.1.1 to 9.1.2 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.11 to 20.14.12.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-20.14.12

chore(deps-dev): bump @types/node from 20.14.11 to 20.14.12 in /frontend_challenge_2/challenges/k-taro56
Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 6.4.6 to 6.4.7.
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.6...v6.4.7)

---
updated-dependencies:
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/testing-library/jest-dom-6.4.7

chore(deps-dev): bump @testing-library/jest-dom from 6.4.6 to 6.4.7 in /frontend_challenge_2/challenges/k-taro56
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.5.3 to 5.5.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.3...v5.5.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/typescript-5.5.4

chore(deps-dev): bump typescript from 5.5.3 to 5.5.4 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.12 to 22.0.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [husky](https://github.com/typicode/husky) from 9.1.2 to 9.1.4.
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.2...v9.1.4)

---
updated-dependencies:
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-22.0.0

chore(deps-dev): bump @types/node from 20.14.12 to 22.0.0 in /frontend_challenge_2/challenges/k-taro56
…d_challenge_2/challenges/k-taro56/husky-9.1.4

chore(deps-dev): bump husky from 9.1.2 to 9.1.4 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.0.0 to 22.0.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-22.0.2

chore(deps-dev): bump @types/node from 22.0.0 to 22.0.2 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.0.2 to 22.1.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-22.1.0

chore(deps-dev): bump @types/node from 22.0.2 to 22.1.0 in /frontend_challenge_2/challenges/k-taro56
Bumps [lint-staged](https://github.com/lint-staged/lint-staged) from 15.2.7 to 15.2.8.
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.7...v15.2.8)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/lint-staged-15.2.8

chore(deps-dev): bump lint-staged from 15.2.7 to 15.2.8 in /frontend_challenge_2/challenges/k-taro56
Bumps [material-symbols](https://github.com/marella/material-symbols/tree/HEAD/material-symbols) from 0.21.2 to 0.21.3.
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.21.3/material-symbols)

---
updated-dependencies:
- dependency-name: material-symbols
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/material-symbols-0.21.3

chore(deps): bump material-symbols from 0.21.2 to 0.21.3 in /frontend_challenge_2/challenges/k-taro56
Bumps [material-symbols](https://github.com/marella/material-symbols/tree/HEAD/material-symbols) from 0.21.3 to 0.22.0.
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.22.0/material-symbols)

---
updated-dependencies:
- dependency-name: material-symbols
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/material-symbols-0.22.0

chore(deps): bump material-symbols from 0.21.3 to 0.22.0 in /frontend_challenge_2/challenges/k-taro56
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.1.0 to 22.5.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…d_challenge_2/challenges/k-taro56/types/node-22.5.1

chore(deps-dev): bump @types/node from 22.1.0 to 22.5.1 in /frontend_challenge_2/challenges/k-taro56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants