Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/@tailwindcss-standalone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@parcel/watcher-linux-x64-musl": "^2.5.1",
"@parcel/watcher-win32-x64": "^2.5.1",
"@types/bun": "^1.3.2",
"bun": "^1.3.2",
"bun": "^1.3.3",
Comment on lines 45 to +46
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

cat -n packages/@tailwindcss-standalone/package.json | sed -n '40,50p'

Repository: tailwindlabs/tailwindcss

Length of output: 619


🌐 Web query:

Bun 1.3.3 release notes changelog breaking changes

💡 Result:

Here are the breaking changes introduced in the Bun 1.3 series (as documented in the v1.3 release notes):

  • Bun.serve() TypeScript types reworked:
    • WebSocket data typing changed to an XState-style pattern; Bun.Server is now generic (T = WebSocket .data). Use undefined/unknown if not using WebSockets. Bun.ServeOptions deprecated in favor of Bun.Serve.Options. [1]
  • TypeScript default changed to "module": "Preserve" (was auto-detected). [1]
  • GC signal on Linux changed from SIGUSR1 to SIGPWR. [1]
  • require('./file.unknown-extension') now defaults to the JavaScript loader (instead of file loader) for Node compatibility. [1]
  • bun info aliased to bun pm view. [1]
  • Bun.serve() option rename: static → routes. [1]
  • SQL client now throws if called as a function instead of used as a tagged template literal (use sqlquery or sql.unsafe()). [1]
  • Some workspace/install defaults changed (e.g., tracking for install.linkWorkspacePackages was discussed as a breaking change for v1.3). [1][3]

Sources: Bun v1.3 release notes and Bun v1.3.3 release page. [1][2][3]

References
[1] Bun v1.3 release notes (breaking changes).
[2] Bun v1.3.3 release notes (changelog/bugfixes and new APIs).
[3] GitHub tracking/issue for breaking changes in v1.3.


Align @types/bun version with the bun runtime.

The @types/bun devDependency is at ^1.3.2 while bun is at ^1.3.3. Although the caret notation allows ^1.3.2 to accept patch updates up to 1.3.3, explicitly aligning versions ensures consistency for a build-time dependency.

Update line 45:

-    "@types/bun": "^1.3.2",
+    "@types/bun": "^1.3.3",

Bun 1.3.3 is a patch release with bugfixes and does not introduce breaking changes beyond the v1.3.0 series (which involved type definition updates for Bun.serve() and module handling).

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"@types/bun": "^1.3.2",
"bun": "^1.3.2",
"bun": "^1.3.3",
"@types/bun": "^1.3.3",
"bun": "^1.3.3",
🤖 Prompt for AI Agents
In packages/@tailwindcss-standalone/package.json at lines 45-46, the @types/bun
devDependency is set to ^1.3.2 while bun is ^1.3.3; update the @types/bun
version to ^1.3.3 so the devDependency matches the runtime version. Edit the
package.json to change the @types/bun entry to ^1.3.3, run npm/yarn/bun install
to update lockfile, and verify build/tests pass.

"lightningcss-darwin-arm64": "catalog:",
"lightningcss-darwin-x64": "catalog:",
"lightningcss-linux-arm64-gnu": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.3",
"bun": "^1.3.2",
"bun": "^1.3.3",
"vite": "catalog:"
}
}
104 changes: 52 additions & 52 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.