@@ -22,7 +22,7 @@ async function buildForPlatform(triple: string, outfile: string) {
2222async function build ( triple : string , file : string ) {
2323 let start = process . hrtime . bigint ( )
2424
25- let outfile = path . resolve ( __dirname , `dist/${ file } ` )
25+ let outfile = path . resolve ( __dirname , `../ dist/${ file } ` )
2626
2727 await buildForPlatform ( triple , outfile )
2828
@@ -41,7 +41,7 @@ async function build(triple: string, file: string) {
4141 }
4242}
4343
44- await mkdir ( path . resolve ( __dirname , 'dist' ) , { recursive : true } )
44+ await mkdir ( path . resolve ( __dirname , '../ dist' ) , { recursive : true } )
4545
4646// Build platform binaries and checksum them
4747let results = await Promise . all ( [
@@ -50,12 +50,12 @@ let results = await Promise.all([
5050 // build('linux-armv7', 'tailwindcss-linux-armv7'),
5151 build ( 'bun-darwin-arm64' , './tailwindcss-macos-arm64' ) ,
5252 build ( 'bun-darwin-x64' , './tailwindcss-macos-x64' ) ,
53- build ( 'bun-windows-x64' , './tailwindcss-windows-x64.exe' ) ,
53+ build ( 'bun-windows-x64-baseline ' , './tailwindcss-windows-x64.exe' ) ,
5454 // buildForPlatform('win32-arm64', 'tailwindcss-windows-arm64'),
5555] )
5656
5757// Write the checksums to a file
58- let sumsFile = path . resolve ( __dirname , 'dist/sha256sums.txt' )
58+ let sumsFile = path . resolve ( __dirname , '../ dist/sha256sums.txt' )
5959let sums = results . map ( ( { file, sum } ) => `${ sum } ${ file } ` )
6060
6161console . table (
0 commit comments