Skip to content

Commit 4befb01

Browse files
MrSmart00claude
andcommitted
fix: GitHub ActionsのNode.jsバージョンとESモジュール設定を修正
- Node.jsバージョンを18から20に更新(Vite v7.1.5の要件対応) - package.jsonで"type": "module"に変更してESモジュール対応 - GitHub Actions上でのビルドエラー(Node.jsバージョン不足とESモジュール構文エラー)を解決 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ab16843 commit 4befb01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: '18'
20+
node-version: '20'
2121
cache: 'npm'
2222

2323
- name: Install dependencies

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"keywords": [],
2121
"author": "",
2222
"license": "MIT",
23-
"type": "commonjs",
23+
"type": "module",
2424
"bugs": {
2525
"url": "https://github.com/MrSmart00/astute-crow/issues"
2626
},

0 commit comments

Comments
 (0)