chore: upgrade devDependencies#50
Merged
Merged
Conversation
- @playwright/test: 1.58.2 → 1.59.1 - happy-dom: 17.6.3 → 20.8.9 - typescript: 4.9.5 → 6.0.2 - vite: 4.5.14 → 6.4.2 - vitest: 3.2.4 → 4.1.2 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- moduleResolution: "Node" → "bundler" (appropriate for Vite projects) - Remove deprecated baseUrl option - Fix paths values to use relative paths (./src/* instead of src/*) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
TypeScript 6.0 tightened BlobPart to require ArrayBufferView<ArrayBuffer>, rejecting Uint8Array<ArrayBufferLike>. Use new Uint8Array(source) to safely copy data into a guaranteed ArrayBuffer-backed typed array. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Use ?inline query to import CSS as a string, as required by Vite 6. Replace hand-written module declaration with official vite/client reference directive in env.d.ts. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
@playwright/test: 1.58.2 → 1.59.1happy-dom: 17.6.3 → 20.8.9typescript: 4.9.5 → 6.0.2vite: 4.5.14 → 8.0.6vitest: 3.2.4 → 4.1.2以下のパッケージは pnpm の
minimumReleaseAge(7日)制限のため今回見送り。解禁後に再アップグレード予定:prettier: 3.8.1 のまま(3.8.2 は 4/10 リリース)vite: 8.0.8 のまま(8.0.8 は 4/9 リリース)vitest: 4.1.4 のまま(4.1.4 は 4/9 リリース)happy-dom: 20.9.0 のまま(20.9.0 は 4/13 リリース)Breaking changes への対応
tsconfig.jsonの非推奨オプション(moduleResolution: "node10"、baseUrl)を修正。moduleResolution: "bundler"に変更し、baseUrlを削除してpathsを相対パスに修正Uint8Array<ArrayBufferLike>がBlobPartに代入不可になった型エラーを修正。new Uint8Array(source)でArrayBufferバックのコピーを作成?inlineクエリが必要になった変更に対応。env.d.tsに/// <reference types="vite/client" />を追加Test plan
pnpm build成功pnpm test:unit run— 52件全パスpnpm test:e2e— Chromium / Firefox / WebKit 計 81件全パス🤖 Generated with Claude Code