Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 50f0977

Browse files
committedFeb 6, 2025·
tmp test bun pr
1 parent d04074b commit 50f0977

File tree

3 files changed

+165
-8
lines changed

3 files changed

+165
-8
lines changed
 

‎packages/@tailwindcss-standalone/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
"@parcel/watcher-win32-x64": "^2.5.1",
4545
"@types/bun": "^1.1.16",
4646
"bun": "1.2.2",
47+
"bun-pr": "1.0.29",
4748
"lightningcss-darwin-arm64": "^1.29.1",
4849
"lightningcss-darwin-x64": "^1.29.1",
4950
"lightningcss-linux-arm64-gnu": "^1.29.1",

‎packages/@tailwindcss-standalone/scripts/build.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ import { fileURLToPath } from 'node:url'
66

77
const __dirname = fileURLToPath(new URL('.', import.meta.url))
88

9+
// Install temp version of Bun to test the fix
10+
await $`bunx bun-pr 17102`
11+
912
async function buildForPlatform(triple: string, outfile: string) {
1013
// We wrap this in a retry because occasionally the atomic rename fails for some reason
1114
for (let i = 0; i < 5; ++i) {
1215
try {
13-
let cmd = $`bun build --compile --target=${triple} ./src/index.ts --outfile=${outfile} --env inline`
16+
let cmd = $`bunx bun-17102 build --compile --target=${triple} ./src/index.ts --outfile=${outfile} --env inline`
1417

1518
// This env var is used by our patched versions of Lightning CSS and Parcel Watcher
1619
// to statically bundle the proper binaries for musl vs glibc

‎pnpm-lock.yaml

+160-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.