Bump dev dependencies (TypeScript 7, Vite, Vitest, Prettier, Tailwind) - #33
Merged
Conversation
Dependabot dev-dependencies group (supersedes #26, rebased onto the React 19 / v1.0.5 main). - typescript 5.5 -> 7.0, vite 8.0 -> 8.1, vitest 4.1.9 -> 4.1.10, prettier 3.3 -> 3.9, @vitejs/plugin-react 6.0.2 -> 6.0.4, tailwindcss / @tailwindcss/vite 4.3.1 -> 4.3.3. - Add src/vite-env.d.ts so TypeScript 7 (now strict about side-effect imports of non-code modules) resolves the './index.css' import. - Reformat src/grbl/types.ts under Prettier 3.9. Verified: typecheck (browser + node), 53 tests, build, prettier --check. Co-Authored-By: Claude Opus 4.8 <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.
Takes Dependabot's dev-dependencies group (supersedes #26), rebased onto the React 19 / v1.0.5 main so it applies cleanly.
Bumps
typescriptvitevitestprettier@vitejs/plugin-reacttailwindcss/@tailwindcss/viteFixes needed for the bump
src/vite-env.d.ts(new): TypeScript 7 is strict about side-effect imports of non-code modules and errored onimport './index.css'(TS2882). This adds the standard/// <reference types="vite/client" />shim, which declares*.css(andimport.meta.env, etc.). A triple-slash reference is used becausetsconfigsets an explicittypesallowlist.src/grbl/types.ts: reformatted by Prettier 3.9 (a short union collapsed onto one line) — needed for CI'sprettier --check.Verification
npm run typecheck(browser) ✓npm run typecheck:node(gateway) ✓npm test→ 53 passing ✓npm run build✓prettier --check✓npm audit→ 0 vulnerabilities ✓🤖 Generated with Claude Code