build(deps): bump all dependencies to latest#22
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
tightknit-dev-website | 2a58ad1 | Commit Preview URL Branch Preview URL |
May 16 2026, 05:22 AM |
Major bumps: astro 5→6.3.3, typescript 5→6.0.3. Also bumps @tailwindcss/vite, tailwindcss, and @astrojs/check to 4.3.0/0.9.9. Adds an npm overrides entry pinning vite to ^7.3.3 to deduplicate the tree: @tailwindcss/vite 4.3.0 ships with vite 8 as a peer-installable hoist (which pulls in rolldown), but Astro 6.3.3 still depends on vite 7. Without the override, the two vite copies co-exist and the Tailwind plugin tries to call rolldown-vite APIs on Astro's vite-7 instance, failing the build with "Missing field tsconfigPaths on BindingViteResolvePluginConfig.resolveOptions". Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
9af329c to
2a58ad1
Compare
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
astro5→6.3.3,typescript5→6.0.3@tailwindcss/viteandtailwindcssto 4.3.0,@astrojs/checkto 0.9.9overrides.vite: ^7.3.3in package.json to keep a single vite copy in the treeWhy the override
@tailwindcss/vite@4.3.0resolvesvite@8(which pulls inrolldown) when hoisted, whileastro@6.3.3still depends onvite@7. Without the override npm installs both, and at build time the Tailwind plugin tries to register a rolldown-shaped resolver against Astro's vite-7 instance, blowing up with:Pinning everyone to
vite@^7.3.3(matching Astro's own range) deduplicates the tree and keeps rolldown out of the picture. The override can come off once@tailwindcss/viteships a build whose default vite resolves back to 7.x, or once Astro 6 moves to vite 8.Test plan
npm installcleannpm run build(astro check + astro build) — 0 errors, 0 warningsnpm run dev— Astro v6.3.3 serves/at HTTP 200 with Tailwind v4.3.0 CSSnpx wrangler deploy --dry-run— reads built assets successfully🤖 Generated with Claude Code