mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-10 07:49:38 +00:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
const reactOutput = Bun.spawnSync({
|
|
cmd: ['bun', 'build:react']
|
|
})
|
|
console.log(reactOutput.stdout.toString())
|
|
console.log(`Built react app`)
|