Skip to content

Commit d7418ca

Browse files
committed
@types/nodeをLTSバージョンに固定しhonoを更新
1 parent e4ff032 commit d7418ca

6 files changed

Lines changed: 79 additions & 88 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1+
<!-- markdownlint-disable MD041 -->
2+
13
## 概要
24

35
概要を記述。
46

57
## 変更点
68

79
| 追加・変更・削除したファイル (リポジトリルートからの相対パス) | 変更内容 | 事由 |
8-
|-----------------------------------------------------|---------|-----|
10+
| --------------------------------------------------- | ------- | --- |
911
| 変更したファイルのリポジトリルートからの相対パス | どんな変更を行なったのか? | 何故、変更が必要だったのか? |
1012

1113
## 関連Issue
1214

13-
-
15+
- あれば記述(なければセクションを削除)
1416

1517
## 確認事項
1618

1719
- [ ] (Typescriptの場合) `pnpm audit --fix` で脆弱性を修正済みか?
1820
- [ ] (Typescriptの場合) `pnpm lint-fix` でコードスタイルは修正済みか?
19-
- [ ] (Markdownの場合)`markdownlint-2` で Markdown の lint は修正済みか?
21+
- [ ] (Markdownの場合)`npx -y markdownlint-cli2@latest . --fix` で Markdown の lint は修正済みか?
2022

2123
## 特記事項
24+
25+
あれば記述する

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ updates:
2727
rebase-strategy: auto
2828
assignees:
2929
- poad
30+
ignore:
31+
- dependency-name: "@types/node"
32+
versions: ["25.x", "27.x", "29.x"] # 奇数バージョン(非LTS)を無視
3033
groups:
3134
npm:
3235
patterns:

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@hono/node-server": "1.19.9",
2424
"@stylistic/eslint-plugin": "^5.9.0",
2525
"@types/aws-lambda": "8.10.160",
26-
"@types/node": "25.3.0",
26+
"@types/node": "^24.10.13",
2727
"@vitest/coverage-v8": "4.0.18",
2828
"aws-cdk": "2.1106.1",
2929
"esbuild": "0.27.3",
@@ -45,7 +45,7 @@
4545
"aws-cdk-lib": "2.238.0",
4646
"aws-lambda-mcp-server": "workspace:*",
4747
"constructs": "10.5.1",
48-
"hono": "4.12.0",
48+
"hono": "4.12.1",
4949
"zod": "4.3.6"
5050
}
5151
}

package/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@eslint/compat": "2.0.2",
4848
"@eslint/js": "^10.0.1",
4949
"@stylistic/eslint-plugin": "^5.9.0",
50-
"@types/node": "25.3.0",
50+
"@types/node": "^24.10.13",
5151
"eslint": "^10.0.1",
5252
"eslint-import-resolver-typescript": "4.4.4",
5353
"eslint-plugin-import": "2.32.0",
@@ -62,7 +62,7 @@
6262
"@aws-lambda-powertools/logger": "^2.31.0",
6363
"@hono/mcp": "^0.2.3",
6464
"@modelcontextprotocol/sdk": "^1.26.0",
65-
"hono": "^4.12.0",
65+
"hono": "^4.12.1",
6666
"zod": "^4.3.6"
6767
},
6868
"peerDependencies": {

0 commit comments

Comments
 (0)